We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To send a message using body_loc_key, body_loc_args, title_loc_key or title_loc_args, the message_body kwargs must be set to non-empty.
body_loc_key
body_loc_args
title_loc_key
title_loc_args
message_body
According to FCM docs, body(message_body) is optional. It was my understanding that body and body_loc_key+body_loc_args are independent.
body
The condition check in question: https://github.com/olucurious/PyFCM/blob/master/pyfcm/baseapi.py#L133
My current workaround to use body_loc_key and body_loc_args is
notify_multiple_devices( registration_ids=[], message_body=' ', // single space string body_loc_key='mykey', body_loc_args=['a', 'b', 'c'], )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To send a message using
body_loc_key
,body_loc_args
,title_loc_key
ortitle_loc_args
, themessage_body
kwargs must be set to non-empty.According to FCM docs,
body
(message_body
) is optional. It was my understanding thatbody
andbody_loc_key
+body_loc_args
are independent.The condition check in question:
https://github.com/olucurious/PyFCM/blob/master/pyfcm/baseapi.py#L133
My current workaround to use
body_loc_key
andbody_loc_args
isThe text was updated successfully, but these errors were encountered: