[FCM] http POST push 요청 규격
FCM push interface URL POST https://fcm.googleapis.com/fcm/send header Authorization - key=서버키 Content-Type - application/json body { "to": "device id or topic", "registration_ids" : ["device id","device id"], "data": { "type": "메시지 타입", "linkTo": "이동하려는 스크린", "key": "value" }, "notification": { "body": "푸시알림 내용", "title": "푸시알림 제목" } } 💡 to / registration_ids 둘 중에 하나의 프로퍼티만 사용 가능 to : 한 개의 devi..
2021.11.17