gpt4 book ai didi

node.js - 在 Firebase Cloud Messaging 上哪里可以找到客户端 token ID?

转载 作者:太空宇宙 更新时间:2023-11-03 23:59:16 24 4
gpt4 key购买 nike

我尝试使用 Firebase Cloud Messaging 查找简单的客户端-服务器应用。

我使用 Nodejs 和 this package ,但我不知道如何以及在哪里可以找到客户端 token ?

这里是示例代码:

var fcm = require('fcm-notification');
var FCM = new fcm('path/to/privatekey.json');
var token = 'token here';

var message = {
data: { //This is only optional, you can send any data
score: '850',
time: '2:45'
},
notification:{
title : 'Title of notification',
body : 'Body of notification'
},
token : token
};

FCM.send(message, function(err, response) {
if(err){
console.log('error found', err);
}else {
console.log('response here', response);
}
})

最佳答案

通常,此人在网站/应用程序上,并且客户端代码会请求发送通知的权限。如果获得批准,客户端就会调用 FCM 服务器来获取代表该人的 token 。然后,客户端代码将该 token 与此人的 ID 一起保存到数据库中。然后,在发送消息时,您的服务器端软件从数据库中读取 token 。

(我希望这是您问题的答案。)

关于node.js - 在 Firebase Cloud Messaging 上哪里可以找到客户端 token ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55524075/

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