[post] https://fcm.googleapis.com/fcm/send
[Headers]
Authorization : key={{SERVER_KEY}}
Content-Type : application/json
[Body] - raw - JSON
{
"to" : "{{DEVICE_TOKEN}}",
"registration_ids" : [
"{{DEVICE_TOKEN1}}",
"{{DEVICE_TOKEN2}}",
],
"notification" : {
"body" : "Body of Your Notification",
"title": "Title of Your Notification",
"sound": "default"
},
"data" : {
"body" : "Body of Your Notification in Data",
"title": "Title of Your Notification in Title",
"key_1" : "Value for key_1",
"key_2" : "Value for key_2",
"android_channel_id": "deployPushTest"
},
"priority" : "high"
}
'개발 > flutter' 카테고리의 다른 글
[flutter] flutter doctor 시 Android Studio not found at =/Contents 오류발생 (0) | 2021.06.09 |
---|---|
[GetX] Flutter GetX (0) | 2021.02.17 |
[flutter] 생명주기 (0) | 2020.01.09 |
[flutter] 플러터 링크 모음 (0) | 2020.01.06 |