如何处理节点服务器中的FCM上游消息?

时间:2016-08-28 08:09:08

标签: android node.js xmpp firebase-cloud-messaging

我正在使用node-xcs模块在NodeJs中创建XMPP CCS服务器,但在该模块中没有发送ACK消息的方法,这是发送回FCM所必需的。

1 个答案:

答案 0 :(得分:1)

您是否使用fcm-node包获取FCM令牌?使用它我们可以注册设备看我的完整编码我已经用它来发送通知到移动

var FCM = require('fcm-node');
exports.SendNotification = function(msg,title,type,id,user_id,api_token)
{

                        var fcm = new FCM(constants.serverKey);

                            var message = {
                                        registration_ids :  api_token,
                                      notification: {
                                        title: title,
                                        body:msg
                                        },
                                    data: {
                                        type: type,
                                                id:id,
                                                user_id:user_id
                                    }
                                };

                                fcm.send(message, function(err, response){
                                    if (err)
                                        {
                                        console.log("Error for Send Notification",err);
                                                return;
                                    }
                                        else
                                        {
                                        console.log("Successfully sent Notification", response);
                                                return;
                                        }
                                    });
}

然后像这样调用这个函数

msg='new notification for you'
title='Hello'
id='34'
user_id='34'
result='api_token'//save this token in database and retrive using user_id
SendNotification(msg,title,'START_APPOINTMENT',id,user_id,result);