Reputation: 2828
I have an android application with a backend web application developed in django.
I am using django-push-notification library to enable push notification in my django backend application.
In the android application I send the registration id to the backend django application and it is stored in the DB successfully.
When I try to send the test message from the admin area, I got a confirmation that all messages are sent but I did not receive any message on my android application.
I suspected the android application but I wrote some code to test the application receiver and it worked fine, so I think the problem is in the django application.
Is there any method to make sure that the messages sent from the django app is received by the google cloud messaging service ?
Upvotes: 0
Views: 1878
Reputation: 661
I worked with GCM and django-push-notification long time ago. Although I do no clearly remember, but you can try something like:
msg
key)Upvotes: 1