하 ㅋㅋㅋㅋ ㅋ구글 공식문서에 속았다.
나를 속인 문서 링크 : 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.
 
에러 메시지를 받으며 원인을 찾아봤는데, 이제 사용하지 않아서 에러가 발생하는 것이다.
 
 
 
 
이제 사용하지 않는다고 적어둔 공식문서 :
 

https://firebase.google.com/docs/reference/admin/node/firebase-admin.messaging.messaging?hl=ko#messagingsendmulticast

 

Messaging class  |  Firebase Admin SDK

 

firebase.google.com

 

 

 

해결책은 공식문서에 적혀있지만, 요약 정리를 해보자면

 

Messaging.send_multicast() 를 대신해서

Messaging.send_each_for_multicast() 사용하면 해결 된다.

 

 

+ Recent posts