0

嗨,我在 python 中使用 pyfcm 库将通知推送到 Firebase,但问题是即使 API 密钥有效,我也会收到以下错误,我是从 Firebase 控制台获取的。

{'multicast_ids':[6126851584300569327],'success':0,'failure':1,'canonical_ids':0,'results':[{'error':'InvalidRegistration'}],'topic_message_id':无}

这是我的代码,registration_id 是一个随机值(它应该是从某个地方生成的特定值吗?)。

from pyfcm import FCMNotification


push_service = FCMNotification(api_key="the key")

print("fcm")

registration_id = "454sd5"
message_title = "Uber update"
message_body = "Hi john, your customized news for today is ready"
result = push_service.notify_single_device(registration_id=registration_id, message_title=message_title, message_body=message_body)
print(result)

如果您能指导我完成此操作,我将不胜感激,谢谢。

4

0 回答 0