AndreaC
AndreaC

Reputation: 176

AuthenticationError sending a notification with Firebase Cloud Messaging

When I send a request with PostMan to https://fcm.googleapis.com/fcm/send with this body

{
"data": {
    "notification": {
        "title": "notification.newcomment.title",
        "body": "notification.newcomment.body",
        "click_action": "/video/a2df5da5-a0d8-4a27-1588-08d64fb9bf88",
        "icon": "null"
    }
},
"to": "xxxxx"
}

I receive from Firebase this response:

{
"multicast_id": 6589525169180682671,
"success": 0,
"failure": 1,
"canonical_ids": 0,
"results": [
    {
        "error": "AuthenticationError"
    }
]}

I don't understand what is the problem of the AuthenticationError.

Upvotes: 3

Views: 832

Answers (1)

AndreaC
AndreaC

Reputation: 176

Now it works. I think it was a Firebase problem because I haven't changed anything in the request.

Upvotes: 1

Related Questions