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.

Possible Duplicate:
When sending messages using GCM , I keep getting response : MismatchSenderId

I'm trying to create a push service for my android app and I follow google GCM's doc and example for this matter: I can register/unregister my android app. From my server side I can see that I have one subscription registered but when I try to send a message from server to my android app I always get following error:

Error sending message to device #0: MismatchSenderId

For my android app I use SENDER_ID = 200000000001

And for my server side as google says I use API_KEY = AIzxxxxxxxxxxxxxxxxXxxXxxXxxxXXXXXxxxxs

I followed this document:

http://developer.android.com/guide/google/gcm/demo.html

I've enabled GCM in my google API panel too, yet I'll get that annoying error message.

Can anyone help me please?

share|improve this question

marked as duplicate by casperOne Aug 7 '12 at 13:16

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 7 down vote accepted

Did your server use the new registration ID returned by the GCM server to your app? I had this problem, if trying to send a message to registration IDs that are given out by the old C2DM server.

And also double check the Sender ID and API_KEY, they must match or else you will get that MismatchSenderId error. In the Google API Console, look at the URL of your project:

https://code.google.com/apis/console/#project:xxxxxxxxxxx

The xxxxxxxxx is the project ID, which is the sender ID.

And make sure the API Key belongs to 'Key for server apps (with IP locking)'

share|improve this answer
I have a huge doubt here.Is it possible to deploy my application to load of other cellphones with only one SERIALID? – austin powers Jul 3 '12 at 15:13
1  
Have you looked at the GCM architectural overview developer.android.com/guide/google/gcm/gcm.html? Every Android phones that is using your app will register with GCM with your app's Sender ID, and they will receive a unique GCM registration ID, that you have to store on your server. If you wish to send a message to all of your users, you need to go through all of those registration ids. – azgolfer Jul 3 '12 at 15:23
1  
This is really silly, but it works. The Project ID listed in the page on the dashboard is a named id that I got to pick, however you must use the numeric ID from the url which is very confusing. – Redth Jul 3 '12 at 17:50
@azgolfer - do you mean "API_KEY" above rather than "APK_KEY"? – Richard Russell Dec 21 '12 at 16:56
@Richard, yes, you're right. Post edited. – azgolfer Dec 22 '12 at 1:48
show 1 more comment

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