2024/09/23 3

ChatGPT와 FCM 개발 - reboot

82. reboot - messaging.getToken개발을 계속 진행하면서 문제를 해결하기 위하여 여러 가지 질문을 하면서 개선을 해 봤지만 기능 구현에 실패했습니다. 로그 상으로 정상적으로 데이터를 넣었다고 생각을 하는데 FirebaseMessingError가 발생합니다. 미로에 빠졌습니다. 이때는 처음부터 새로 시작하는 것이 좋습니다.FCM 푸시 알림을 만들기 위해 ChatGPT에게 FCM 구현에 대해 질문을 했을 때 messaging.getToken()으로 Token을 받아 이것으로 알림을 요청할 수 있다는 답을 받았는데 오류에 대해 정밀하게 파악을 하지 않은 채로 다른 내용으로 이동하였습니다.messaging.getToken()으로 돌아와 다시 시작합니다.ChatGPT에게 물었습니다.Pleas..

PWA 2024.09.23

ChatGPT와 FCM 개발 - 푸시 알림 보내기

81. 푸시 알림 보내기my-fcm 웹앱에서 Firebase Functions의 ‘'sendPushNotification' 함수를 호출하여 푸시 알림을 보내는 기능을 만들어 봅시다.ChatGPT에게 물었습니다.Create a function to send push notifications by calling sendPushNotification in the pwa web app made with Vue.vue로 만들어진 pwa 웹앱에서 sendPushNotification를 호출하여 푸시 알림을 보내는 기능을 만들어줘.ChatGPT To create a function that sends push notifications from a Progressive Web App (PWA) built with Vu..

PWA 2024.09.23

ChatGPT와 FCM 개발 - sendMulticast

80. sendMulticast(message)FCM 서비스에서 제공하는 메서드로서 토큰 배열을 사용하여 여러 장치에 동시에 푸시 알림을 보낼 수 있습니다.ChatGPT에게 물었습니다.admin.messaging().sendMulticast(message); please explain.admin.messaging().sendMulticast(message); 설명 해줘ChatGPT admin.messaging().sendMulticast(message) is a method provided by the Firebase Admin SDK, specifically in the Firebase Cloud Messaging (FCM) service. This method is used to send a push..

PWA 2024.09.23