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.

Im implementing a push notification server with GCM. I send a post request with a Sender ID (Application Key) that I got from google API Console , and a Registration ID that I got from GCM service.

The post json include one Registration ID

I always get the same response :

{"multicast_id":8546528660791862014,"success":0,"failure":1,"canonical_ids":0,"results":[{"error":"MismatchSenderId"}]}

What might be the problem ? What M I doing wrong ?

Any Ideas ?

share|improve this question

3 Answers

up vote 5 down vote accepted

See this post: why do I get "MismatchSenderId" from GCM server side?

From the url above:

Double check the Sender ID and APK_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.

EDIT: Some people are reporting issues using the "Key for Server Apps" type of keys, but having success using the Browser Key type instead. Personally, the Server Key type works for me, but try both, YMMV.

share|improve this answer
Sorry, but this answer is incorrect. Use the API Key labeled for Browsers. For some reason the IP Restricted ones aren't currently working (I'm developing as we speak). – Roger Thomas Jul 5 '12 at 13:48
Actually, the server key works fine here. I'm the author of PushSharp and I've had success using the key for server app, however I've edited my answer to suggest trying both if the server key does not work. – Redth Jul 5 '12 at 15:34
Actually Redth, that's a good idea. Clearly it's safer to use the Server specific key, but I've generated one for several different servers without any luck whatsoever. – Roger Thomas Jul 6 '12 at 8:05

Generate an API key from the API Console. Use browser app key in backend and use the project id as the sender id in your client code.

share|improve this answer
This is not working... When I use the project id, I get an INVALID_SENDER when trying to register. When I use the email address associated with the api console project, it registers successfully, but I still get the MismatchSenderID error too... – Redth Jul 3 '12 at 14:46
see this link stackoverflow.com/questions/11242743/… i have use browser api key and it working fine in my case. – Sanket Jul 4 '12 at 5:18

Please uninstall your android app from device and run the app again.
Now you will get a new registration Id,that may solve your MismatchSenderId problem in a specific case(Sometimes it happens If you change/refresh your api key but still using the old registration key) .In my case I got the registration Id first for my device and then I changed my API Key(on Google Gcm server) and then I got MismatchSenderId error.Finaly I uninstall my android app from device and problem got solved.

share|improve this answer
1  
Great answer +1 from me. – Antony Aug 20 '12 at 14:22
Once I got my ID's all correct, it still wasn't working. This solution did the trick for me. +1 – Jackson Nov 5 '12 at 17:36
@Jackson please to hear – Atul Bhardwaj Nov 7 '12 at 6:25
Nice answer. Solved the problem. – NAVEED Jan 3 at 6:37

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.