gpt4 book ai didi

firebase - 使用新的 firebase API 向特定设备发送消息

转载 作者:行者123 更新时间:2023-12-05 00:59:27 24 4
gpt4 key购买 nike

我正在编写一个新的服务器应用程序(使用 .net)来向客户端(主要是 android 设备)发送通知,并且我正在使用来自 firebase 云消息传递的新 Http v1 api,我看到以下 Post 请求正文发送一个主题通知

{
"message": {
"topic": "news",
"notification": {
"title": "Breaking News",
"body": "New news story available."
},
"data": {
"story_id": "story_12345"
}
}
}

但是,我将如何使用 FCM Id 向特定设备发送通知?

注意:我已经使用旧版 API 实现了向单个设备发送通知。

最佳答案

有 v1 HTTP API 的文档。具体来说,有一个 sending messages to a specific device 的部分.您需要知道设备 token :

{
"message":{
"token" : "bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1...",
"notification": {
"title": "Breaking News",
"body": "New news story available."
},
"data": {
"story_id": "story_12345"
}
}

关于firebase - 使用新的 firebase API 向特定设备发送消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53554355/

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