gpt4 book ai didi

java - 是否可以通过POSTMAN向特定应用程序包名称发送FCM推送通知?

转载 作者:行者123 更新时间:2023-12-02 02:49:06 25 4
gpt4 key购买 nike

我知道如何通过 POSTMAN 使用 FCM-TOKEN 和 TOPIC 名称发送推送通知,但我不确定如何使用包名称发送 FCM 通知,或者如果我的 firebase 项目包含超过 2 个包,则仅发送到特定包连接的应用程序。

{ 
"to": "/topics/global", // global is your topic
"notification" : {
"body" : "great match!",
"content_available" : true,
"priority" : "high",
"title" : "Portugal vs. Denmark"
},
"data" : {
"body" : "great match!",
"content_available" : true,
"priority" : "high",
"title" : "Portugal vs. Denmark"
}
}

最佳答案

是的,您可以从 postman 发送通知。为此,您必须创建如下所示的 JSON

{
"to" : "YOUR_FCM_TOKEN_WILL_BE_HERE",
"collapse_key" : "type_a",
"notification" : {
"body" : "Body of Your Notification",
"title": "Title of Your Notification"
},
"data" : {
"body" : "Body of Your Notification in Data",
"title": "Title of Your Notification in Title",
"key_1" : "Value for key_1",
"key_2" : "Value for key_2"
}
}

选择POST METHOD输入请求 URL https://fcm.googleapis.com/fcm/send

添加 header Authorization: key=<server_key> ,您将从 Firebase Cloud 消息传递选项卡中获取它

Content-Type: application/json

有关更多信息,请查看此 Link

希望这对您有帮助。

关于java - 是否可以通过POSTMAN向特定应用程序包名称发送FCM推送通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57122203/

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