curlの使用例
特定のデバイスにメッセージを送信する
特定のデバイスにメッセージを送信するには、特定のアプリインスタンスの登録トークンをに設定します
curl -H "Content-type: application/json" -H "Authorization:key=<Your Api key>" -X POST -d '{ "data": { "score": "5x1","time": "15:10"},"to" : "<registration token>"}' https://fcm.googleapis.com/fcm/send
トピックにメッセージを送信する
ここでのトピックは:/ topics / foo-bar
curl -H "Content-type: application/json" -H "Authorization:key=<Your Api key>" -X POST -d '{ "to": "/topics/foo-bar","data": { "message": "This is a Firebase Cloud Messaging Topic Message!"}}' https://fcm.googleapis.com/fcm/send
デバイスグループにメッセージを送信する
デバイスグループへのメッセージの送信は、個々のデバイスへのメッセージの送信とよく似ています。toパラメータをデバイスグループの一意の通知キーに設定します
curl -H "Content-type: application/json" -H "Authorization:key=<Your Api key>" -X POST -d '{"to": "<aUniqueKey>","data": {"hello": "This is a Firebase Cloud Messaging Device Group Message!"}}' https://fcm.googleapis.com/fcm/send
サービスAPIの使用例
API URL: https://fcm.googleapis.com/fcm/send
ヘッダー
Content-type: application/json
Authorization:key=<Your Api key>
リクエスト方法: POST
リクエストボディ
特定のデバイスへのメッセージ
{
"data": {
"score": "5x1",
"time": "15:10"
},
"to": "<registration token>"
}
トピックスへのメッセージ
{
"to": "/topics/foo-bar",
"data": {
"message": "This is a Firebase Cloud Messaging Topic Message!"
}
}
デバイスグループへのメッセージ
{
"to": "<aUniqueKey>",
"data": {
"hello": "This is a Firebase Cloud Messaging Device Group Message!"
}
}