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.

Is it possible to use same sender id for more applications? Now I have 18 application (different language and some functionality) which use same backend. Now I am implementing push notifications with GCM. But backend team preffer to have only one google project - SENDER ID for all applications. Did anyone try it? Is this scenario possible? What are the drawbacks?

Thanks

share|improve this question

2 Answers

up vote 19 down vote accepted

thorin19's answer is wrong.

Developers are perfectly welcome (and encouraged) to use the same sender ID / API key for all of their apps.

When you send a message, you specify a registration ID, which is implicitly linked to the package name of the app + device where it was generated. Only the app which requested the registration ID will receive your message.

Source: I'm a member of the Android team at Google.

share|improve this answer

The SenderID is your Application ID on Google API. If, for all of your projects, you used the same SenderID, all of your project received the same push. If you would send push for particular application, it's not possible with the same Sender ID.

share|improve this answer
Thanks. In our case we need filter push notification for particular application. So now I have and argument for backend team to generate tons of projects. Probably we will end up with 50 applications :) – pcu Jul 19 '12 at 7:36

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.