我是 python 中的 FCM 新手。
raise AuthenticationError("There was an error authenticating the sender account")
pyfcm.errors.AuthenticationError: There was an error authenticating the sender account
在向 android 设备发送推送通知时,我收到这样的错误。
欲望问题的代码在这里==>
registration_id = "<device token>"
message_title = "title"
message_body = "test notification"
result1 = push_service.notify_single_device(registration_id=registration_id, message_title=message_title, message_body=message_body)
print(result1)
请指导解决欲望问题。