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