user184604
user184604

Reputation: 63

Google Picker API developerkey

I am trying to use the Google Picker API. But i am having trouble locating the Developer Key.

I have created my project and set up OAuth. i Have the following:-

Client ID      123xyz.apps.googleusercontent.com
Email address  [email protected]
Client secret  1234-56789

However the Google Picker script requires the following:-

// The API developer key obtained from the Google Developers Console.
var developerKey = '';

// The Client ID obtained from the Google Developers Console.
var clientId = '[email protected]';

Could someone please tell me where i can find my Developer Key?

I have looked all through my Developer Console but cannot find it anywhere!!

Thanks in advance for your help.

Upvotes: 1

Views: 812

Answers (1)

Anthony Elliott
Anthony Elliott

Reputation: 3001

It's called a developer key in the code but is referred to as an API key on the Google Developer console.

You have to go to the Google Developer console, select your project, then click the red button called Create New Key and walk through the steps specific to your situation.

You may also find this SO question relevant either now or if you run into another question about the picker.

Upvotes: 2

Related Questions