What is the BlackBerry Messenger or BBM instant messaging User agent string? - user-agent

What is the BlackBerry Messenger or BBM instant messaging' User agent string ?
plz any one post user agent string for bbm instant messaging ?

BlackBerry 10 user agent string is:
Mozilla/5.0 (BB10; <Device Model>) AppleWebKit/<WebKit Version> (KHTML, like Gecko) Version/<BB Version #> Mobile Safari/<WebKit Version>
Unless your asking what a BBM Pin is? In which case, the UAString is just an 8 digit hexadecimal code assigned by the BBM server

Related

How to tell which client did the user send a Slack with? (e.g. mobile, desktop, web)

Is there a way to know what client was used to send a particular message in Slack? e.g. Mobile App Mac OS, Desktop App Windows, Web Client Chrome
For example, if an user sent a message to my bot via DM, I'll like to know which client the user is currently on...
No, that information is not available in the Slack API.

Instead of displaying a ReceiptCard, Skype client returns "Eek! We can't show this card on the version of Skype you have."

I am returning a ReceiptCard with a Name and List of Fact, but the Skype web client and the desktop app return "Eek! We can't show this card on the version of Skype you have.". The response ReceiptCard looks fine in the Bot Emulator.
Any ideas on what Skype is not able to show the card? I have tried the preview versions and also updated Skype, but no luck. Any ideas? Thanks
You're right that at this time Skype does not support tables in cards by sending a key/value pair.

push notifications in Windows Phone

I've implement a Project to send push notifications to a Windows phone application.
The notification coming succesfully in the emulator or i'm running the app to send to a different emulator and the app to receive to another emulator and it Works fine.
The problem is that the notification is not coming to the telephone device.
Is there a restriction or any other issue to check?
I think that you should set the variable channelname via ToastSampleChannel, so, the field private const String ChannelName = "MyChannel" should be changed accordingly.
private const String ChannelName = "ToastSampleChannel"

Sending SMS from mobile browser with pre-composed message on Android 4.4 (KitKat)

Pre Android 4.4 Kitkat, I was sending an SMS from the mobile browser with a pre-composed message and phone number by using something like:
< a href="sms:+1234567?body=helloworld">Send SMS < /a>
Upon clicking the link on the mobile browser, the default SMS app would be launched on the phone with the phone number and pre-composed message already entered. All the user would have to do is press send and the message would be sent. Testing using Chrome and the default browser on Android 4.1 - 4.3 seems to indicate this still works).
However on KitKat, the pre-composed message is not populated in the field, only the phone number. Does anybody know how to fix this issue?
I have been searching the same issue for a while and I couldn't find a positive answer.
SMS URL on Android
However, there seems to be an alternative: send the SMS from the server using PHP and a form, as described here:
sending sms from a mobile browser

Register custom app as default for handling sms sending and receveing

Register custom app as default for handling sms sending and receveing in windows phone
This is not possible with the current Windows Phone SDK. You can vote on the official Windows Phone Dev Feedback to indicate your interest in an SMS Access API.
The only thing you can do with the current SDK is launch the default SMS app with a predefined number and text:
SmsComposeTask smsComposeTask = new SmsComposeTask();
smsComposeTask.To = "2065550123";
smsComposeTask.Body = "Your text";
smsComposeTask.Show();
You can send SMS using the above mentioned method.But you cannot receive SMS in windows phone.
It is possible only in Windows Mobile platforms.
As far as I am aware, you cannot change the default apps in Windows Phone.
And addition. You'r program is being run in a sandbox - closed space for you'r application only. That means you cannot run/modify etc other 3 party programms. Only the default programs like Calculator and etc. are awailable

Resources