하 ㅋㅋㅋㅋ ㅋ구글 공식문서에 속았다.
나를 속인 문서 링크 : https://firebase.google.com/docs/cloud-messaging/send-message?hl=ko&_gl=1*6icy9e*_up*MQ..*_ga*Mzk1OTMyMTQ1LjE3MzEzOTk2OTc.*_ga_CW55HF8NVT*MTczMTM5OTY5Ny4xLjAuMTczMTM5OTY5Ny4wLjAuMA..#python_1
분명 이렇게 하면 된다고 적어놨으면서!!!!!!
# Create a list containing up to 500 registration tokens.
# These registration tokens come from the client FCM SDKs.
registration_tokens = [
'YOUR_REGISTRATION_TOKEN_1',
# ...
'YOUR_REGISTRATION_TOKEN_N',
]
message = messaging.MulticastMessage(
data={'score': '850', 'time': '2:45'},
tokens=registration_tokens,
)
response = messaging.send_multicast(message)
# See the BatchResponse reference documentation
# for the contents of response.
print('{0} messages were sent successfully'.format(response.success_count))
결론부터 말하자면
Messaging.sendMulticast() is deprecated.
수많은 501 에러와
Operation is not implemented, or supported, or enabled.
에러 메시지를 받으며 원인을 찾아봤는데, 이제 사용하지 않아서 에러가 발생하는 것이다.
이제 사용하지 않는다고 적어둔 공식문서 :
Messaging class | Firebase Admin SDK
firebase.google.com
해결책은 공식문서에 적혀있지만, 요약 정리를 해보자면
Messaging.send_multicast() 를 대신해서
Messaging.send_each_for_multicast() 사용하면 해결 된다.
'에러' 카테고리의 다른 글
[파이썬] MS SQL DB 연결 오류 DB-Lib error message 20002, severity 9:Adaptive Server (0) | 2025.01.07 |
---|---|
[Flutter/iOS] 아이폰 앱 크래시, 아이폰 앱 강제종료 (feat. Flavor) (3) | 2024.12.03 |
[Flutter] InAppWebView pull to refresh / 당겨서 새로고침 오류 (0) | 2024.09.06 |
[Flutter] CFBundleIconFiles is not of the required type for that key (0) | 2024.08.21 |
[Flutter] local notification plugin FCM 알림 에러 (0) | 2024.08.06 |