作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在 Android 上集成推送通知。
根据appcelerator article .
// notification setting
var deviceToken = null;
// Require the module
var CloudPush = require('ti.cloudpush');
// Initialize the module
CloudPush.retrieveDeviceToken({
success: deviceTokenSuccess,
error: deviceTokenError
});
// Enable push notifications for this device
// Save the device token for subsequent API calls
function deviceTokenSuccess(e) {
Ti.API.info("deviceTokenSuccess :" + e.deviceToken);
deviceToken = e.deviceToken;
}
function deviceTokenError(e) {
alert('Failed to register for push notifications! ' + e.error);
}
// Process incoming push notifications
CloudPush.addEventListener('callback', function (evt) {
alert("Notification received: " + evt.payload);
});
我需要获取 deviceToken 才能将通知推送到 android,但此脚本使用 CloudPush,它需要“钛箭服务”登录。
但是我想使用亚马逊 SNS 服务而不是“Arrow 服务”来推送消息,并且不想使用 Arrow 服务。
(我已经完成了amazon SNS设置,并且在iOS中推送通知成功。)
如何在不使用cloudpush的情况下获取android deviceToken。
这可能吗??
最佳答案
您可以使用 https://github.com/morinel/gcmpush获取设备 token
关于android - 没有cloudpush的android的getDeviceToken,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35243181/
我是一名优秀的程序员,十分优秀!