반응형
FCM에는 토큰 생명주기 이런게 없다.
해당 내용 참조.
https://firebase.google.com/docs/cloud-messaging/manage-tokens?hl=ko&authuser=0
그렇기에 프론트측에서도 필요하다면 해줘야하는 부분이 있다.
FCM 호출구조.
https://seungwoolog.tistory.com/88
위 내용이 있고, 만약에 토큰 삭제를 프론트측에서 해야할 경우.
"deleteToken": [Function anonymous],
"getConstants": [Function anonymous],
"getInitialNotification": [Function anonymous],
"getToken": [Function anonymous],
"hasPermission": [Function anonymous],
"isAutoInitEnabled": true,
"isDeliveryMetricsExportToBigQueryEnabled": false,
"sendMessage": [Function anonymous],
"setAutoInitEnabled": [Function anonymous],
"setDeliveryMetricsExportToBigQuery": [Function anonymous],
"subscribeToTopic": [Function anonymous],
"unsubscribeFromTopic": [Function anonymous]
위 내용으로 await messaging() 응답값으로 온다.
await messaging().deleteToken();
await messaging().getToken();
해당 명령어로 토큰 삭제를 진행하자.
728x90
'취업 > ReactNative' 카테고리의 다른 글
[RN] TypeError: Cannot read property 'Constants' of null (0) | 2024.02.01 |
---|---|
[RN] 딥링크 기능 구현하기. (0) | 2023.06.16 |
[RN] FCM 연결하기. 리액트네이티브 버전 : 0.71.7 (1) | 2023.05.10 |