I need to implement c2dm in my app. Is there anyone who is also doing this? Please help..some tutorials will be very helpful OR if you have completed your c2dm implementation then a tutorial is more than appreciated.
Please help.
|
I need to implement c2dm in my app. Is there anyone who is also doing this? Please help..some tutorials will be very helpful OR if you have completed your c2dm implementation then a tutorial is more than appreciated. Please help. |
|||||||||||
|
|
I went ahead and downloaded the Chrome2Phone source code for android and understood how it works through that example, I had the most trouble implementing the server side of the App. Download it from: http://code.google.com/p/chrometophone/source/checkout or svn it:
Basic things you should understand. In the C2DMBaseReciever class you have:
This method recieves the intents from the C2DM service and handles them. In the handleRegistration method you will see some code that looks like:
You then have to use the google oAuth login service to register your server to the service, once that is done you can send a message. When I was testing I was using curl to send http post requests to the server. To register from the server:
You will get a message with an auth id. You then use that to send the messages. To send a message use:
Download curl from: CURL Hope this helps. |
|||||||||||
|
|
a tutorial about c2dm client/server registration and sending/receiving of messages. http://android.arnodenhond.com/tutorials/cloud-to-device-messaging
|
|||
|
|