Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The request was missing an Authentification Key FCM Token

I am trying to hit using postman firebase url but it is giving me error. I have setup all the things but it still it is giving me error

Here is the error which I am getting on postman

<HTML>
    <HEAD>
        <TITLE>The request was missing an Authentification Key (FCM Token). Please, refer to section &quot;Authentification&quot; of the FCM documentation, at https://firebase.google.com/docs/cloud-messaging/server.</TITLE>
    </HEAD>
    <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
        <H1>The request was missing an Authentification Key (FCM Token). Please, refer to section &quot;Authentification&quot; of the FCM documentation, at https://firebase.google.com/docs/cloud-messaging/server.</H1>
        <H2>Error 401</H2>
    </BODY>
</HTML>


These things I am adding <br/>
url = 'https://fcm.googleapis.com/fcm/send'<br/>
method = POST<br/>
Headers <br/>
Authorization = 'FIREBASE_SERVER_API_KEY'<br/>
Content-Type = application/json<br/>
Body = 
"{"registration_ids":["ids"],"priority":"high\",\"data\":{\"notification_id\":76,\"title\":\"dvxcv\",\"description\":\"xcvxv\",\"image\":\"/uploads/image/image/37513/Screenshot_from_2016-10-17_10_43_59.png\"}}"
like image 817
ankur Avatar asked Nov 22 '16 09:11

ankur


People also ask

What is FCM device token?

Firebase Cloud Messaging (FCM) is a messaging solution that lets you reliably send messages at no cost to both Android & iOS devices. Using FCM, you can send data payloads (via a message) to a device for a specific application. Each message can transfer a payload of up to 4KB to a client.


1 Answers

All you need to do first in Header
Authorization: key='FIREBASE_SERVER_API_KEY'

And you are having problems with json parsing you have to remove '/'

{"registration_ids":["ids"],"priority":"high","data":{"notification_id":76,"title":"dvxcv","description":"xcvxv","image":"/uploads/image/image/37513/Screenshot_from_2016-10-17_10_43_59.png"}}

Edit For any confusion follow my tutorial how to integrate firebase with ruby on rails

like image 77
Aniket Tiwari Avatar answered Sep 30 '22 18:09

Aniket Tiwari