gpt4 book ai didi

javascript - 通过 node.js 发送 android 推送通知

转载 作者:数据小太阳 更新时间:2023-10-29 04:12:57 25 4
gpt4 key购买 nike

我最近一直在尝试向我的 android 和 ios 设备发送推送通知。对于 ios,我发现 node-apn 模块将用于处理此问题,但对于 android,我还没有遇到过任何此类问题。任何帮助将不胜感激。

最佳答案

还有另一种选择; android-gcm .它非常易于使用。

文档中的代码示例:

var gcm = require('android-gcm');

// initialize new androidGcm object
var gcmObject = new gcm.AndroidGcm('API_KEY');

// create new message
var message = new gcm.Message({
registration_ids: ['x', 'y', 'z'],
data: {
key1: 'key 1',
key2: 'key 2'
}
});

// send the message
gcmObject.send(message, function(err, response) {});

关于javascript - 通过 node.js 发送 android 推送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13927744/

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