FCM REST发送消息401未经授权,即使发送服务器密钥也是如此

时间:2020-09-14 05:01:33

标签: firebase rest google-cloud-platform firebase-cloud-messaging authorization

使用Firebase FCM REST API,我收到401未经授权的错误。 我实际上确实像下面这样发送服务器密钥:

enter image description here

我在这里缺少什么?

1 个答案:

答案 0 :(得分:0)

使用旧版API,就像一个魅力:

POST: https://fcm.googleapis.com/fcm/send

{
    "to": DEVICE_TOKEN,
    "notification": {
        "title": "Hello World title",
        "body": "Notification content"
    },
    "data": {
        "foo": "bar"
    }
}

使用我在问题中提供的相同标题。