ตัวอย่างการใช้ขด
ส่งข้อความไปยังอุปกรณ์เฉพาะ
หากต้องการส่งข้อความไปยังอุปกรณ์เฉพาะให้ตั้งค่าเป็นโทเค็นการลงทะเบียนสำหรับอินสแตนซ์แอปที่เฉพาะเจาะจง
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
ส่งข้อความไปยังหัวข้อ
นี่คือหัวข้อ: / topic / 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
ส่งข้อความไปยังกลุ่มอุปกรณ์
การส่งข้อความไปยังกลุ่มอุปกรณ์นั้นคล้ายคลึงกับการส่งข้อความไปยังอุปกรณ์แต่ละชิ้น ตั้งค่าพารามิเตอร์เป็นคีย์การแจ้งเตือนเฉพาะสำหรับกลุ่มอุปกรณ์
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
ตัวอย่างการใช้ Service API
URL API: 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!"
}
}