0

只要有成功的插入操作到表中,我就会从 Azure 向我的 Win 8 应用程序发送祝酒词。这是脚本

request.execute({
        success: function() {
            // Write to the response and then send the notification in the background
            request.respond();
            push.wns.sendToastImageAndText02(item.channel, {
                text1:' Blue Flame Detected !',text2 :'Please Click on the message for Instruction Set',Duration:'ToastDuration.Long',sound:'reminder',image1src:item.imageUri
            }, {
                success: function(pushResponse) {
                    console.log("Sent push:", pushResponse);
                }
            });
        }
    });

});

当用户单击它时,我希望 toast 在我的应用程序中打开一个新页面。我知道 toast 有 Activated 事件,但我如何从我的 Azure 脚本中使用它?

4

1 回答 1

0

launch您可以在 toast 通知中传递参数。这是 Windows Store App 中的 toast 通知示例,但您可以在 Windows Azure 推送通知服务中使用相同的场景。

如何将参数传递给由 toast 通知激活的应用程序

如何处理来自 toast 通知的激活

于 2013-06-16T17:23:33.177 回答