Where can I get Google developer key

后端 未结 16 1769
眼角桃花
眼角桃花 2020-12-02 07:46

I am working on Google API like chat, contacts and so on... I am stuck on developer_key as mentioned in gdata doc.

You can get this at https://code.goog

相关标签:
16条回答
  • 2020-12-02 08:29

    in https://code.google.com/apis/console/ , in SERVICES, turn on YOUTUBE API, then click API ACCESS in the left menu.

    0 讨论(0)
  • 2020-12-02 08:31

    2017 Update

    1. Open Google API - https://console.developers.google.com
    2. Go to Credentials.
    3. Click on the 'Create Credentials' button. At time of writing it's currently a blue coloured dropdown.
    4. Select API Key.

    You should get a dialog from where you can copy this API key to use in your project. Hope this helps.

    0 讨论(0)
  • 2020-12-02 08:34

    "Public API access" the key generated there is the key you got to paste into your public static final String DEVELOPER_KEY as part of this writing 26.12.2013 It is not the clientID but you got take the steps mentioned above to obtain one and generate the public api access key.

    0 讨论(0)
  • 2020-12-02 08:35

    You should be able to generate a Youtube API key there.

    The recommended way to authorize your API call is to use OAuth 2.0 (without API key), as pointed by the documentation an API key is only necessary when using OAuth 1.0 credentials.

    The API key for your application can be found in the Google APIs Console in API Access > Simple API.

    0 讨论(0)
提交回复
热议问题