網頁

2016年12月27日 星期二

Use Postman to test push notification(GCM)

簡易記錄一下如何透過Postman來測試驗證Android推播訊息


前言
推播問題多,透過Postman能快速自我驗證,釐清問題
測試步驟
  1. 首先請安裝Postman。Postman: a Google chrome extension.
  2. Postman設定
  3. Request Type:POST
    URL:https://android.googleapis.com/gcm/send
    Header
      Authorization : key=your key //Google API KEY
      Content-Type : application/json
    Body
    JSON (raw) : 請照自己的發送格式
    {
      "to":"token",
      "data": {
        "message" : "Test測試"
      }
    }
  4. 確認回應訊息,當success的值大於0,表示成功發送幾個

閱讀全文...