6

私はpostman firebase URLを使用してヒットしようとしていますが、エラーが出ます。 私はセットアップすべてのものを持っていますが、それはまだそれは私にエラーリクエストに認証キーFCMトークンがありません

ここ

を与えているが、私は郵便配達

<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\"}}" 

答えて

4

あなたはヘッダーで最初にやらなければならないことになっていますエラーです
認証:キー= 'FIREBASE_SERVER_API_KEY'

そして、あなたは、あなたが削除する必要が解析し、JSONで問題が発生している '/'

{"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"}} 

編集 任意の混乱のために私のヘッダの下でチュートリアル how to integrate firebase with ruby on rails

+0

郵便配達で同じメッセージが表示され、私はAuthorization:key =(これはクラウドのメッセージングタブに表示されるFCMトークンです) –

+0

どのように解決しましたか? – ankur

+0

まだ何が間違っているのか分かっていません。 –

1

、認証は、次のとおりです。キー= AAAAを.....

はFirebaseサーバーキートークンの前に「=キー」を追加する必要があります! !

+0

これは機能しました。よくやった。 – kamyFC

関連する問題