我们已经按照文档中的说明在消息中设置了"analytics_label",消息也正在传递。但我们在报告中没有看到任何条目。请检查我们的消息字符串,让我们知道可能出了什么问题。感谢你的帮助。
正在调用REST API
https://fcm.googleapis.com/fcm/send
正在发送的消息
{"topic":"81xxxxx42","android":{"priority":"high"},"prioriity":"height","fcm_options":{
我不确定您正在使用什么库,也不确定您是否只是直接发布到REST API,但看看我知道有效的代码,我认为您只需要制作fcm_options和analytics_label camel-case。
{
"topic": "81xxxxx42",
"android": {
"priority": "high"
},
"priority": "high",
"fcmOptions": {
"analyticsLabel": "nwy81xxxxx42"
},
"data": {
"MID": -1,
"frm": "99xxxxx32",
"MTP": 9,
"msg": ""
}
}