如何在Android上实现离子io推送通知

时间:2016-06-16 13:49:48

标签: android angularjs cordova ionic-framework push-notification

我在使用ionic.io和phonegap-plugin-push实现推送通知时遇到问题。 这是我的开发环境::

our system information:

Cordova CLI: 6.2.0
Gulp version: CLI version 3.9.1
Gulp local: 
Ionic Framework Version: 1.3.1
Ionic CLI Version: 1.7.15
Ionic App Lib Version: 0.7.2
OS: Distributor ID: LinuxMint Description: Linux Mint 17.1 Rebecca 
Node Version: v0.12.2

Installed platforms:
android 5.1.1

Testing Device:
Samsung Galaxy Core Prime LTE Android 4.4.4 (rooted)

所以我按照www dot devdactic dot com / ionic-push-notifications-guide /的教程进行了操作 并尝试使用插件实现推送通知

ionic add ionic-platform-web-client
ionic plugin add phonegap-plugin-push --variable SENDER_ID="1234567890"

现在我能够在浏览器中使用开发或演示推送通知。但是,当我尝试实现真正的推送通知并在设备上测试它时,它不起作用。当应用程序启动时,它会按照教程中的预期成功生成设备令牌。但是,当我使用令牌发送推送通知的CURL或Postman http请求时,我得到的json响应与我成功的dev_push通知(HTTP状态201)完全相同,但我从未收到设备上的实际推送通知。我已经仔细检查了所有内容,例如确保将dev_push设置为false,我甚至从头开始尝试了3次教程,以及离子文档中的教程。在所有情况下,我都成功生成了一个开发令牌,我的cURL请求给出了肯定的响应,但设备上没有收到任何内容。

我的代码::

app.js:

angular.module('starter', ['ionic'])

.run(function($ionicPlatform) {
  $ionicPlatform.ready(function() {

    var push = new Ionic.Push({
      "debug": true
    });

    push.register(function(token) {
      console.log("Device token:",token.token);
      push.saveToken(token);  // persist the token in the Ionic Platform
    });

    if(window.cordova && window.cordova.plugins.Keyboard) {
      // Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
      // for form inputs)
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);

      // Don't remove this line unless you know what you are doing. It stops the viewport
      // from snapping when text inputs are focused. Ionic handles this internally for
      // a much nicer keyboard experience.
      cordova.plugins.Keyboard.disableScroll(true);
    }
    if(window.StatusBar) {
      StatusBar.styleDefault();
    }
  });
})

index.html ---> http://pastebin.com/p9zwYXiQ

config.xml,package.json,postman request&回应---> http://pastebin.com/YT2Kn64W

2 个答案:

答案 0 :(得分:2)

我在Android上出乎意料地工作了!离子肮脏的过时文档在这里确实没有多大帮助。我最终创建了一个新的应用程序,将www文件夹迁移到新的,只是为了避免麻烦。然后,除了以下内容之外,确保您执行文档中的离子:

从Google Firebase控制台创建一个新的Firebase帐户,是的,从未在文档中提及过。首次定义项目时,请确保包名称与离子项目根目录中config.xml中定义的名称相同。 Firebase将为您提供一个新项目ID(SENDER_ID)和一个api密钥。

更新app.js推送启动代码中的SENDER_ID。

非常重要!!:Firebase将引导您完成如何更新您的gradle项目,它们是10秒更改,如果您不添加它们,您将不会收到通知!。

project_root - >平台 - > android - > build.gradle:

// under buildscript { ... dependencies { ..
// paste this:
classpath 'com.google.gms:google-services:3.0.0'
// at the bottom of the file paste this
apply plugin: 'com.google.gms.google-services'

确保将这些行粘贴到正确的位置

在终端中运行 - 在此处使用新的SENDER_ID

cordova plugin add phonegap-plugin-push --variable SENDER_ID=SENDER_ID --save

app更新API密钥 - >证书 - 仅适用于Android !!

运行命令: //重建离子平台文件

ionic build android

从真实设备运行应用程序,-c -l用于终端中的liveReaload和日志记录控制台

ionic run android --device -l -c

祝你好运。

答案 1 :(得分:1)

我一直在努力但不幸的是我从来没有让它工作过。我浪费了整整一周的时间来处理这件事。幸运的是,我找到了一种有效且易于使用的替代方案。使用OneSignal推送通知:

https://documentation.onesignal.com/docs/phonegap-sdk-setup