I am using the tutorial laid out here http://www.androidsnippets.com/vbnet-server-side-code-to-send-c2dm-messages to attempt to send a message to my device. I have requested a device ID and placed that string in the RegID String.

I receive a (what looks like a) GUID for the googleAuthToken successfully, but when the rest of the code executes, the response I get is Error=MissingRegistration. What exactly am I missing to implement C2DM from a server via VB.NET?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

So, naturally as soon as I ask, the answer presents itself: durring the copying process

    body += "collapse_key=nothing"
    body += "&data.burst_id=" + "12345"
    body += "&registration_id=" + RegID

became

    body += "collapse_key=RDMS"
    body += "&data.burst_id=" + "12345"
    body += "&registration_id=" + RegID

So replacing the & with the standard & caused me to get a message id back.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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