Reputation: 5214
I see only the following details in
https://code.google.com/apis/console/b/0/#project:xxxxx:access
Client ID for installed applications
Client ID: 477522346600.apps.googleusercontent.com
Application type: Chrome App
Application ID: gobkdpbocikdfbnfahjladnetpdkvmic
Simple API Access
API key: AIzaSyDC_BSfqa1Uhgh3M6KqYUvzXuKX0lMnMaw
Referers: Any referer allowed
Activated on: Mar 21, 2013 4:35 AM
Activated by: [email protected] – you
Now, what's my client-secret value in the above data?
Upvotes: 22
Views: 36856
Reputation: 1
Download file JSON Client ID : enter image description here
File name JSON is Client secret : enter image description here
And client secret is same client ID
Upvotes: 0
Reputation: 1927
In case if anyone will step into thi misunderstanding like I did.
If you create OAuth client with Application type "android" (and Chrome App as @Erich answered) you won't get client secret.
Use this (picture) instructions to acquire the key.
Upvotes: 1
Reputation: 2773
For credentials with Chrome App
you won't get a client_secret
only the client_id
. I suggest creating it as type other
instead. This should give you an ID and a secret you can use for your extension.
Upvotes: 2
Reputation: 754
On Credentials page, place cursor over Name (Name is not underlined without cursor over it) once Name is highlighted and underlined, click.
Upvotes: 3
Reputation: 5214
OK, figured it out by myself.
Click the Download JSON link in the Client ID for installed applications section.
Open the JSON in a text-file.
You will find the client-secret.
Upvotes: 31