I am new to FCM in python.
raise AuthenticationError("There was an error authenticating the sender account")
pyfcm.errors.AuthenticationError: There was an error authenticating the sender account
While sending the push notification to the android device I am getting an error like this.
The code for the desire problem is here ==>
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)
Please guide to solve the desire problem.