android – 如何从节点服务器发送Firebase Cloud Messaging?

android – 如何从节点服务器发送Firebase Cloud Messaging?,第1张

概述有没有办法从node.js服务器从FCM发送通知? 我没有在文档中找到任何内容. 通过Firebase发送邮件云消息传递将按照 documentation on sending downstream messages中所述调用HTTP端点. 像这样简单的事情可以做到这一点: var request = require('request');function sendMessageToUser( 有没有办法从node.Js服务器从FCM发送通知?

我没有在文档中找到任何内容.

解决方法 通过Firebase发送邮件云消息传递将按照 documentation on sending downstream messages中所述调用http端点.

像这样简单的事情可以做到这一点:

var request = require('request');function sendMessagetoUser(deviceid,message) {  request({    url: 'https://fcm.GoogleAPIs.com/fcm/send',method: 'POST',headers: {      'Content-Type' :' application/Json','Authorization': 'key=AI...8o'    },body: JsON.stringify(      { "data": {        "message": message      },"to" : deviceid      }    )  },function(error,response,body) {    if (error) {       console.error(error,body);     }    else if (response.statusCode >= 400) {       console.error('http Error: '+response.statusCode+' - '+response.statusMessage+'\n'+body);     }    else {      console.log('Done!')    }  });sendMessagetoUser(  "d7x...KJQ",{ message: 'Hello puf'});

更新(2017年4月):现在,您还可以在Cloud Functions for Firebase中运行与此相似的代码.见https://firebase.google.com/docs/functions/use-cases#notify_users_when_something_interesting_happens

总结

以上是内存溢出为你收集整理的android – 如何从节点服务器发送Firebase Cloud Messaging?全部内容,希望文章能够帮你解决android – 如何从节点服务器发送Firebase Cloud Messaging?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1133696.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存