Reputation: 16663
I want a message from my application to show up in the Windows Phone 'Messaging Hub' without having to send it as a text message. Is it possible to do this?
The application doesn't have to be distributed via the Marketplace, so any private apis would also do.
Upvotes: 4
Views: 215
Reputation: 3506
It isn't possible, during WP 7.X or WP8 SDK.
I solved similar problem by creating HTTP Post Request
with json
(device info, message and other) as parameter. Then posted to my own server, which performed the work instead of the phone.
Hope it's help you.
Upvotes: 4
Reputation: 39027
At this time it isn't possible, as there's no API for that. You can pre-fill a SMS using the SmsComposeTask
, but that's the only interaction you get with that hub.
Upvotes: 2