I am developing a server side app to communicate with an android app that is ready for C2DM. The author or the device side app gave me a Google auth token that I use to send messages and that works fine. I am trying to send messages with a different email account than the one he provided so I did the following:
- signed up for an account
- recevied an email saying I have been whitelisted
- found code to generate an auth token based on a email address and password
- used that new auth token to send messages
- I get Invalid Registration when I send messages with this other auth token
My question is, is the problem that my email account isn't the account that developed the app? If I wanted to send the example code to other folks would I need to hide the auth token?
I was trying to have the people I hand the server app to enter thier own white listed account, generate an auth token and send messages to the device. I guess I am missing something.
Lastly, I see the device has a registrationID. I am sending that in the message along with some text. Like I said, I see the text on the device with the original Auth Token.