Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have problems with understanding / getting in return canonical id. I have deliberately registered my Android app twice (to test canonical id) and when pushing message to both reg id's I dont get in return a canonical id in return from Google. Thats one issue I have, but in order to investigate it further I would like to know what the message format means. I can see in the log that it seems to consist for three parts :%. Any idea what this is? For me the seems to identify the device??

[INFO  com.bipper.filters.PushUpdatesFilter] [ messageId=0:1349819220154718%921c249a6e2555b5 ]
[INFO  com.bipper.filters.PushUpdatesFilter] [ messageId=0:1349819220242456%921c249a6e2555b5 ]
share|improve this question

1 Answer

I managed to get a canonical registration id from GCM this way :

  1. The initial state : Application is installed on Android device and is registered to GCM. Sender server has the registration Id and manages to send messages to that device.

  2. Uninstall the application.

  3. Send two messages to the original (old) registration Id. The first will seem to work (server will receive a successful reply from GCM server). The second attempt will result in a "NotRegistered" error.

  4. Re-install the application and register to GCM. The device will get a new registration Id.

  5. Send a message using the old registration Id. The application will receive the message, but the server will get in the reply the new registration Id as canonical registration Id.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.