Hello,
I am trying to send a push notification to a secondary tile. When I start metro application I suscribte to notifications doing this for tile
var notificationChannel = Windows.Networking.PushNotifications.PushNotificationChannelManager.createPushNotificationChannelForApplicationAsync();
and this for a secondary tile:
var notificationChannel2 = Windows.Networking.PushNotifications.PushNotificationChannelManager.createPushNotificationChannelForSecondaryTileAsync("section.portada");
Both calls my 3rd party service for registration. I receive the same url channel from WNS service.
I know how to send a push notification for tile.
http://msdn.microsoft.com/en-us/library/windows/apps/hh465460.aspx
But I don't know how to send a notification for secondary tile. How can I say wich is de secondary tile id in the push message?
thanks!