无法从gcm服务器获取regID

时间:2014-05-30 07:00:50

标签: android cordova phonegap-pushplugin

几天前,我成功地通过推送插件向我的手机发送消息。但是现在,在执行pushNotification.register之后,我没有收到具有注册ID的通知(在pushNotification.register之后,未触发ecb)。但成功处理程序被解雇了。一个奇怪的事情是,当我关闭每个网络(Wifi,移动互联网)时,成功处理程序也会被解雇。 所以我在另一部手机上试了一下(朋友的)。然后它运作良好。

我的手机发生了什么事?我最近几天搜索了这个问题,但我找不到任何有用的文档。有没有人有同样的问题?

    var pushNotification;
    document.addEventListener("deviceready", function(){
        pushNotification=window.plugins.pushNotification;
        console.log('Device Ready!!');
        register();
    });
    function register() {
        console.log('registering...');
        pushNotification.register(
            successHandler,
            errorHandler,
            {
                "senderID":"1234567890", // (temporary)
                "ecb":"onNotification"
            }
        );
    }

    function onNotification(e) {
        console.log('======onNotification======');
        console.log('type of notification:'+e.event);
        switch(e.event) {
            case 'registered':
                if(e.regid.length>0) {
                    $("#status").append('<li>regid:'+e.regid+'</li>');
                    console.log('regid:'+e.regid);
                }
            break;

            case 'message':
                if(e.foreground) {
                    console.log('inline message');
                } else {
                    if(e.coldstart) {
                        console.log('coldstart message');
                    } else {
                        console.log('background message');
                    }
                }
                console.log('message:'+e.payload.message);
                console.log('msgcnt:'+e.payload.msgcnt);
            break;

            case 'error':
                $("#status").append('<li>error:'+e.msg);
            break;
        }
    }
    function successHandler(result) {
        console.log('success; result:'+result);
    }
    function errorHandler(error) {
        console.log('error; error:'+error);
    }

0 个答案:

没有答案