Vivek
Vivek

Reputation: 1843

Push notification mechanism used by other apps in Windows Phone

I want to know what push mechanism does gmail, facebook or other common apps use in Windows Phone? Are they using MPNS only or something else (like MQTT). For example, Facebook is available for all platforms so whether they are using different protocols for different platforms or using a common approach.

I want to implement push notification for my app. The same app is being developed for other platforms like Android and iPhone also. So I want to use a mechanism which can be used across platforms.

Upvotes: 4

Views: 612

Answers (2)

Yury Schkatula
Yury Schkatula

Reputation: 5369

You should think of Push Notifications as a transport channel, not more. Each mobile platform (Apple, Google, Microsoft) uses it's own cloud to reach your device, and that's could be enough. Once reached, your mobbile app may do whatever it need (for example, to grab extra details about the notification as size of Push message is usually limited).

Given that in mind, it's not a big deal to create one server app communicating to 3 different clouds if sending notifications.

Upvotes: 1

artygus
artygus

Reputation: 615

You can use Urban Airship, it provides support for Microsoft Windows Phone 8 and Windows 8 push through MPNS and WNS, but doesn't support MPNS push to Windows Phone 7 devices

Or Amazon SNS which requires more work

Upvotes: 2

Related Questions