アプリで Azure Mobile Services 通知を使用しています。私のアプリがすでにローンチされている場合、(通知によって) 新製品の ID を取得し、いくつかの処理を行う必要があります。
私はこのチュートリアルに従いました: http://msdn.microsoft.com/en-us/library/windows/apps/jj709907.aspx
問題は、notificationContent にアクセスしてこの新製品の ID を取得する方法です。
私はいくつかのことを試します:
JS 上の Azure 側:
push.wns.sendToastText04(channel.currentkey, {
text1: "New product added : " + item.name,
param1: item.id});
また
push.wns.sendToastText04(channel.currentkey, {
text1: "New product added : " + item.name,
param: item.id});
また
push.wns.sendToastText04(channel.currentkey, {
text1: "New product added : " + item.name,
launch: item.id});
しかし、notificationContent で ID を取得できません。