• Home
  • Raw
  • Download

Lines Matching refs:API

10 …le.com/console/help/managing-projects) and create a project in the [Google API Console](https://co…
15API authentication and authorization are handled. All API calls must use either simple or authoriz…
17 ### 1. Simple API access (API keys)
19 These API calls do not access any private user data. Your application must authenticate itself as a…
21 **API key**: To authenticate your application, use an [API key](https://cloud.google.com/docs/authe…
23 > **Warning**: Keep your API key private. If someone obtains your key, they could use it to consume…
25 ### 2. Authorized API access (OAuth 2.0)
27 These API calls access private user data. Before you can call them, the user that has access to the…
29 * **Scope**: Each API defines one or more scopes that declare a set of operations permitted. For …
30 … for the scope requested. Your application uses access tokens to authorize API calls. Access token…
34 … to acquire tokens. They are created for your Google Cloud project on the [API Access pane](https:…
44 This section describes how to build an API-specific service object, make calls to the service, and …
48API access, you use the [build()](http://googleapis.github.io/google-api-python-client/docs/epy/go…
58API service provides access to one or more resources. A set of resources of the same type is calle…
74API. Calling a collection's method returns an [HttpRequest](http://google.github.io/google-api-pyt…
82 Creating a request does not actually call the API. To execute the request and get a response, call …
96 …t from the JSON response sent by the API server. The JSON structure is specific to the API; for de…
131 …e.com/apis-explorer/) to browse APIs, list available methods, and even try API calls from your bro…
136 and [Library reference documentation by API](dyn/index.md). is available.