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.

I returned to looking at the Android GCM service after a break and got confused regarding the project ID as described in the 'getting started' guide:

Click Create project. Your browser URL will change to something like:

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

Take note of the value after #project: (4815162342 in this example). This is your project ID, and it will be used later on as the GCM sender ID.

Let's call this ID_1

I'd forgotten that my project ID was there to see on the Console API's link in my browser, so thinking I didn't have a project ID, I registered the project through the Google API console and clicked the 'register' link. I got to choose an ID, so now when I look at the console dashboard for my project I get to see something of the form:

Dashboard

Project Summary Name    MYGCMProject
Project ID              i-picked-this-id-2-11b-36
Owners                  me@myemail - you

Let's call the 'i-picked-this' value ID_2

So my question is which value (ID_1 or ID_2) do I use in the the client's registerClient code

GCMRegistrar.register(this, PROJECT_ID); 

?

If it's still ID_1, what use is the ID that I chose when I registered the project via the API console?

(I've seen this question Android GCM- Register Id and Project Id which was the closest similar one, and it doesn't shed any light at all on my query)

share|improve this question

1 Answer

4815 1623 42 this one and it should be **twelve digit**

find it from URL = https://code.google.com/apis/console/#project:4815162342 <---

share|improve this answer
So what use is the second ID that I chose through the console? – NickT Oct 8 '12 at 11:43

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.