[FCM] http POST push 요청 규격

2021. 11. 17. 20:53메모장

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": "푸시알림 제목"
  }
}

ENUMS(TBD)

  • topic
    • all : 전체 디바이스
    • service : 전체 푸시알림 중 마케팅 동의 대상 고객 제외
    • maketing : 마케팅 동의 대상 고객
  • type
    • reservation : 예약 관련된 안내
    • payments : 결제 관련 안내
    • notice : 공지사항
    • marketing : 마케팅 정보
    • ...
  • linkTo
    • Home
    • Notice
    • Event
    • ...