You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
862 B
16 lines
862 B
# API Keys
|
|
|
|
When calling APIs that do not access private user data, you can use simple API keys. These keys are used to authenticate your application for accounting purposes. The Google Developers Console documentation also describes [API keys](https://developers.google.com/console/help/using-keys).
|
|
|
|
> Note: If you do need to access private user data, you must use OAuth 2.0. See [Using OAuth 2.0 for Installed Applications](oauth-installed.md), [Using OAuth 2.0 for Server to Server Applications](oauth-server.md), and [Using OAuth 2.0 for Web Server Applications](oauth-web.md) for more information.
|
|
|
|
## Using API Keys
|
|
|
|
To use API keys, pass them to the `build()` function when creating service objects. For example:
|
|
|
|
```py
|
|
books_service = build('books', 'v1', developerKey='api_key')
|
|
```
|
|
|
|
All calls made using that service object will include your API key.
|