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/"