개발/flutter

[fcm] postman으로 fcm 푸시알림 전송

지승준 2021. 10. 25. 19:05

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