https://developers.google.com/oauthplayground/

 

STEP1. Select & authorize APIs

> 1. Firebase Cloud Messaging API v1  - https://www.googleapis.com/auth/cloud-platform

       선택

   2. 하단 'Authorize APIs' 버튼 클릭 후 계정 선택 

      (단 , firebase console에 해당 프로젝트 등록한 계정을 선택해야함)

 

STEP2. Exchange authorization code fo tokens

> 1. "Exchange authorization code for tokens" 버튼 눌러 접속 계정으로 인증 

   2. Auto-refresh the token before it expires 체크

STEP3. Configure request to API

 

1. 발송 테스트일 경우

 

HTTP Method : POST 설정, 

Request URI : https://fcm.googleapis.com/v1/projects/{프로젝트 이름}/messages:send

입력

2. Enter request body 클릭 하여 아래 내용 입력

{
   "message":{
      "token":"coIUgZJYdESHigmL4qWahT:APA91bHI5Z1FoK6ZjtnN9aipO.....",
      "notification":{
        "body":"This is an FCM notification message!",
        "title":"FCM Message"
      }
   }
}

 

3. Send the request 버튼 클릭하여 실제 기기에서 푸시 알림 수신되는지 확인

 

 

+ Recent posts