我没有从这个函数的数据到我的fcm消息接收器。为什么?

时间:2017-07-29 15:16:00

标签: android

const request = require('request');     
request
(
  {
    method: 'POST',
    uri: 'https://fcm.googleapis.com/fcm/send',
    headers:
    {
      'Content-Type':'application/json',
      'Authorization':'key= server key'
    },
    body: JSON.stringify
    (
      {
        "registration_ids" : [token],
        "data" : 
        {
          "msg":"lattitude"
        },
        "time_to_live": 108
      }
    )
  },
  function(e1,r1,b1)
  {
    console.log(r1);
    console.log(b1);
  }
)

1 个答案:

答案 0 :(得分:0)

我希望您使用了Android中您所使用的同一Firebase控制台中的正确服务器密钥。

'Authorization':'key= server key'