Firebase 云消息传递 HTTP 协议
从你的服务器请求到下面的链接,发送带有一些请求参数的通知
https://fcm.googleapis.com/fcm/send
请求添加标头如下
Authorization key=<Your_key_from_the_console>
Content-Type application/json
请求的主体各不相同
{
"to" : <tokens or the topic>,
"notification" : {
"title":"This is a test title",
"body":"This is the body"
},
"data": {
//whatever key value payer you need to send
}
}
to 参数采用像标记数组
["token1","token2",..........]
或者像一个令牌
"token"
或以 / topic / like 开头的主题名称
"/topic_name/"
对于使用||的多主题使用条件和&&运算符喜欢
"/topic_name/ && /topic2/"