Android Parse.com Push Notification Not Sent
Background I have an Android app with a working receiver that can receive the push notification sent from iOS device and Parse website. However, the following cases are not working
Solution 1:
I have found the reason.
It is the "uri" field inside JSON.
As long as this field is included (with or without the content), notifications seemed being ignored by Parse, although you'll get a non-error callback.
If you remove "uri" field inside your JSON, notifications will become normal.
I've reported this bug to Parse and they've started to solve it.
Update
According to the reply from Parse.com, this is an intended feature, so the notifications with "uri" field will be discarded on the server side, thus it will not be sent.
related link: https://developers.facebook.com/bugs/338005256408244
Post a Comment for "Android Parse.com Push Notification Not Sent"