适用于Windows Phone 8的Azure移动服务和推送通知

时间:2013-01-08 10:09:10

标签: node.js windows-phone windows-phone-8 azure-mobile-services

我在使用此代码时遇到了一些问题(Azure Mobile Services中预定作业的一部分):

    var channelTable = tables.getTable('PushChannels');
    channelTable.read({
        success: function(channels) {
            channels.forEach(function(channel) {
                push.mpns.sendToast(channel.PushChannelUri, {
                    text1: "AppName:",
                    text2: "Update!"
                }, {
                    success: function(pushResponse) {
                        console.log("Push sent");
                    },
                    error: function(error) {
                        console.error("Error!");
                    }
                });
            });
        }
    });

我的问题是:

  • 推送通知未到达设备
  • console.logs未显示在“日志”标签

有人可以帮助我吗? 亲切的问候!

1 个答案:

答案 0 :(得分:0)

代码是正确的。问题出在该脚本之前的代码中。 对不必要的问题我很抱歉:(