2

我正在 Android 应用程序中搜索推送通知。我检查了“ Pushwoosh ”:以initPushwoosh我看到的方法GOOGLE_PROJECT_IDPUSHWOOSH_APP_ID.

function initPushwoosh() {
  var pushNotification = window.plugins.pushNotification;
  pushNotification.registerDevice(
    {
      projectid: "GOOGLE_PROJECT_ID",
      appid : "PUSHWOOSH_APP_ID"
    },
    function(status) {
      var pushToken = status;
      console.warn('push token: ' + pushToken);
    },
    function(status) {
      console.warn(JSON.stringify(['failed to register ', status]));
    }
  );
  document.addEventListener('push-notification', function(event) {
    var title = event.notification.title;
    var userData = event.notification.userdata;
    if(typeof(userData) != "undefined") {
      console.warn('user data: ' + JSON.stringify(userData));
    }
    navigator.notification.alert(title);
  });
}

我怎样才能得到这两个ID?或者有没有更好的方法来做到这一点?

我在 PhoneGap 文档中看到了通知,它是推送通知吗?

谢谢你。

4

2 回答 2

5

这些是您必须执行的步骤:

  1. 首先您必须在 Google APIs 站点注册,选择服务:https ://code.google.com/apis/console/
  2. 将 Google Cloud Messaging 切换为 ON
  3. 在服务条款页面中,接受条款。现在您需要创建服务器密钥
  4. 按“API 访问”按钮
  5. 按“创建新的服务器密钥”。服务器密钥或浏览器密钥应该可以工作。使用服务器密钥的优点是它允许您将 IP 地址列入白名单。
  6. 按“创建”。
  7. 您可以GOOGLE_PROJECT_ID从 Google API 控制台中的 URL 找到您的。通常它看起来像这样:https ://code.google.com/apis/console/#project :12345678912:access 在这个例子中,它会是:12345678912
  8. 进入 Pushwoosh copanel:https ://cp.pushwoosh.com/
  9. 创建或进入My Apps菜单
  10. 当您进入应用程序时,您会在该页面或导航器的 url 中看到应用程序代码,这将是您的PUSHWOOSH_APP_ID
于 2012-11-18T11:29:33.890 回答
2

Phonegap 的通知与推送通知无关。在这里查看:http: //docs.phonegap.com/en/2.2.0/cordova_notification_notification.md.html#Notification

要将 Pushwoosh for Android 与 Phonegap 集成,请查看手册:http ://www.pushwoosh.com/programming-push-notification/android-gcm-push-notifications-guide/

此页面上有更多使用 Pushwoosh 的指南:
http ://www.pushwoosh.com/programming-push-notification/

祝你好运!

于 2012-11-17T23:24:15.857 回答