Etc
FCM 푸시
JunsC
2024. 2. 8. 10:38
728x90
fcm를 보내서 push notification 관련하여 작업해야할 때가 있음.
그때마다 테스트 푸시를 쏴서 확인해야 하는데 그 부분을 postman 으로 손쉽게 동작가능함.
https://fcm.googleapis.com/fcm/send
Post
Content-Type : application/json
Authorization : 파이어베이스 콘솔 서버키
Body -> Raw
{
"to":"fcm 토큰키,
"priority" :"high",
"notification":{
"title":"",
"sound":"",
"body":""
"icon" : "",
"image":""},
"data": {
"pkName":"",
"code":"",
"type":"",
"targetPage":""}
}
이런 형식으로 넣으면 손쉽게 푸시 테시트를 할 수 있음.