gpt4 book ai didi

android - 没有cloudpush的android的getDeviceToken

转载 作者:行者123 更新时间:2023-11-30 01:34:46 24 4
gpt4 key购买 nike

我正在 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com