I have developed a custom teams app which is a message extension using bot framework v3 (c#). I'm having a adaptive card with a submit button, this button trigger AdaptiveSubmitAction, its working on desktop teams app but on mobile version this is not working.
Is there anything I have add to make this work on mobile app also.
According to Gousia, this is a bug and is being looked into
Related
We have built a Teams bot using bot v4 framework using C#. We wanted to integrate the QR code scanning feature inside the bot , like if user clicks on a button the camera pops up and scans the QR code .Is scanning a QR code inside a Teams bot built using bot framework v4 possible ?
Unfortunately this feature is not supported yet. Please raise a User Voice. Microsoft will always focus on customer’s feedback and experience and based on those, new features will be added to the service.
I am currently writing an android app.
I intend to run my application in the background of my phone and I want to be able to detect when I submit a post using the Twitter app on the same device.
Is this even possible?
When you create the OAuth customer key in the Twitter Application Management (url https://apps.twitter.com/),
- that is one of the preliminary steps to implement the authentication-
you'll define there the source field (look for instance at the documentation from https://dev.twitter.com/overview/api/tweets) that will be reported in all the tweets posted by the API of your newly created Twitter app.
So when you get your tweets, you'll detect the ones posted by that specific app (on your phone).
More generally I have published an open source Twitter app for Android on github: https://github.com/giuliohome/TweetSearch just look at the API call where I retrieve the source of a Tweet for more details, basically a simple
jsonObject.getString("source")
By the same field you can detect the tweets posted by the official Twitter app for Android on the same device - assuming it is the only Android device from where your username is twitting with the target app, otherwise I'm not aware of any legitimate and standard way to detect the physical device
I have created a Mobile application, and as it's my first application, and I'm learning how to do windows phone applications, I want to insert ads into.
I have seen this site: http://social.msdn.microsoft.com/Forums/windowsapps/en-US/8adb6cb5-4274-40b3-b1eb-4f06fdaedb86/how-do-i-add-advertisements-in-my-app?forum=wpdevelop
but when I add using Microsoft.Advertising.Mobile.Xna I have been able to add the reference Microsoft.Advertising.Mobile and Microsoft.Advertising.Mobile.UI but I haven't found Microsoft.Avertising.Mobile.Xna
Is there an other way to insert ads created by Microsoft PubCenter, Am I missing something about Xna?
you should follow these steps for windows phone 7 Advertising Sdk Implementation:
Installing the Microsoft Advertising SDK.
Registering the application with the Microsoft pubCenter.
Embedding the ad control in the application.
For Implementing AdControl in App you can try this:
XAML:
<advertising:AdControl ApplicationId="test_client"
AdUnitId="Image480_80">
</advertising:AdControl>
Note: Add this in <phone:PhoneApplicationPage> Tag
xmlns:advertising="clr-namespace:Microsoft.Advertising.Mobile.UI;assembly=Microsoft.Advertising.Mobile.UI"
After this you can see Test Ads in your Application.
for more Reference you can go here Using display ads in Windows Phone 7 apps and you can find good sample here Windows Phone 7 AdControl Example
I'm novice when it comes to using API's with C# apps, and I decided to start a windows 8 Modern UI application. I've looked for information about how to integrate facebook into a project using the facebook API, and I found some useful answers, but some things are still unclear to me...
I've not found any official Facebook API for C#, I created an developer acount on Facebook but when i want to create a project using it, there is no choice for a c# application.
I've searched the Internet and found this : https://github.com/facebook-csharp-sdk/facebook-windows8-sample
I downloaded it and put the app's id I got from Facebook on it, but it doesn't work. My question is simple: Is there any official API with documentation or a website where I can get real and exact information for it?
The Official SDK from Facebook is only for PHP, Javascript, iOS and Android.
For the .NET world, there is the Facebook C# SDK which you have already found. You can do everything with it, including full Windows 8 Apps with Facebook integration.
The main site is at http://CSharpSDK.org/
I want to add a facebook share and twitter tweet options in my WP7 app. Like in Android I want a pop up to be opened showing list of in build apps that allow you to do. Because we have intents in Android. Are there are ways to send such notifications to OS in WP7?
ShareStatusTask and ShareLinkTask will do this for you