试图在PhoneGap build(Android)上实现Pushwoosh

时间:2013-04-15 19:19:06

标签: android push-notification phonegap-build

我正在努力让我的通知工作但是我没有收到它们。我按照教程在phonegap build上实现了pushwoosh。我有来自Google的应用程序ID和API密钥,但是当我重新安装应用程序时,我没有收到应用程序所在的设备。

我猜我的问题在以下代码中:

// handle GCM notifications for Android
 function onNotificationGCM(e) {
 switch( e.event )
 {
     case 'registered':
     if ( e.regid.length > 0 )
     {
         // Your GCM push server needs to know the regID before it can push to this device
         // here is where you might want to send it the regID for later use.
         PushWoosh.appCode = "YOUR_PUSHWOOSH_APP_ID"; // my pushwoosh id is here
         PushWoosh.register(e.regid, function(data) {
                     alert("PushWoosh register success: " + JSON.stringify(data));
                 }, function(errorregistration) {
                     alert("Couldn't register with PushWoosh" +  errorregistration);
                 });

     }
     break;   

我在我的索引文件中的<script>标记中插入了此代码,但是设备没有注册可能导致此问题的原因?

我还应该提一下,我的javascript文件夹中有pushwoosh.js文件,我在.js文件的参考标签中指向它

0 个答案:

没有答案