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 버튼 클릭하여 실제 기기에서 푸시 알림 수신되는지 확인
'android' 카테고리의 다른 글
Android Target API Level 34로 변경 후 빌드 안됨. (3) | 2024.10.31 |
---|---|
[cordova] exitApp 플러그인 추가 안됨 (0) | 2024.07.22 |
Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. (0) | 2023.01.09 |
android 12(sdk version 31) Task :app:processDebugMainManifest FAILED 에러 (0) | 2023.01.06 |
android HTTPS, SSL 인증서 적용하기 (0) | 2022.02.18 |