我最近一直在尝试向我的 android 和 ios 设备发送推送通知。对于 ios,我发现 node-apn 模块将用于处理此问题,但对于 android,我还没有遇到过这种情况。任何帮助都感激不尽。
问问题
17814 次
2 回答
6
还有另一种选择;安卓-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) {});
于 2015-02-22T10:50:54.317 回答
2
于 2012-12-18T07:26:06.303 回答