Curl kullanan örnekler
Belirli cihazlara mesaj gönderme
Belirli cihazlara mesaj göndermek için belirli uygulama örneği için kayıt jetonunu ayarlayın
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
Konulara mesaj gönderme
işte konu: / 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
Cihaz gruplarına mesaj gönderme
Bir aygıt grubuna mesaj göndermek, tek bir aygıta mesaj göndermeye çok benzer. To parametresini aygıt grubu için benzersiz bildirim anahtarına ayarlayın
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
Hizmet API'sini kullanan örnekler
API URL'si: https://fcm.googleapis.com/fcm/send
Başlıkları
Content-type: application/json
Authorization:key=<Your Api key>
İstek Yöntemi: POST
Talep Gövdesi
Belirli cihazlara mesajlar
{
"data": {
"score": "5x1",
"time": "15:10"
},
"to": "<registration token>"
}
Konulara mesajlar
{
"to": "/topics/foo-bar",
"data": {
"message": "This is a Firebase Cloud Messaging Topic Message!"
}
}
Cihaz gruplarına mesajlar
{
"to": "<aUniqueKey>",
"data": {
"hello": "This is a Firebase Cloud Messaging Device Group Message!"
}
}