gpt4 book ai didi

firebase - FCM 'condition' 字段不起作用

转载 作者:行者123 更新时间:2023-12-02 19:59:34 26 4
gpt4 key购买 nike

我无法使用条件字段发送要发送到多个主题的 FCM 消息。由于某种原因,即使 FCM 没有向我发送任何错误,我的设备在使用此字段时也不会收到消息。

当我发送此消息时:

{
"to": "/topics/topic1",
"data": {
"message": "test"
}
}

消息已收到,但我没有收到任何内容:

{
"condition": "'topic1' in topics",
"data": {
"message": "test"
}
}

甚至认为两条消息都使用相同的主题名称,并且两条消息都从 Firebase 返回成功消息。

最佳答案

您必须在您的设备上订阅您的主题,您可以为订阅提供休息服务。奥 git _a当您想发送消息时,您可以提供标题和正文

示例:

{
"message":{
"condition": "'topic1' in topics",
"data": {
"message": "test"
},
"notification" : {
"body" : "This is an FCM notification message!",
"title" : "FCM Message",
}
}
}

使用建模响应 Reference 主题 HTTP POST 请求

Send to a single topic:

https://fcm.googleapis.com/fcm/send
Content-Type:application/json
Authorization:key=AIzaSyZ-1u...0GBYzPu7Udno5aA
{
"to": "/topics/foo-bar",
"data": {
"message": "This is a Firebase Cloud Messaging Topic Message!",
}
}
Send to devices subscribed to topics "dogs" or "cats":

https://fcm.googleapis.com/fcm/send
Content-Type:application/json
Authorization:key=AIzaSyZ-1u...0GBYzPu7Udno5aA
{
"condition": "'dogs' in topics || 'cats' in topics",
"data": {
"message": "This is a Firebase Cloud Messaging Topic Message!",
}
}
Topic HTTP response

//Success example:
{
"message_id": "1023456"
}

//failure example:
{
"error": "TopicsMessageRateExceeded"
}

我用 java RestTemplate 制作了它并交换响应。

关于firebase - FCM 'condition' 字段不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46713669/

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