Lines Matching full:oauth
1 # Using OAuth 2.0 for Installed Applications
3 The Google APIs Client Library for Python supports using OAuth 2.0 in applications that are install…
10 …entity) to authenticate your users. The Google Sign-In button manages the OAuth 2.0 flow both for …
12 …p will run on game consoles, video cameras, or printers), then see [Using OAuth 2.0 for Devices](h…
16 To use OAuth 2.0 in a locally-installed application, first create application credentials for your …
18 …with a Google API, your application sends the user to Google's OAuth 2.0 server. The OAuth 2.0 ser…
20 Next, Google's OAuth 2.0 server sends a single-use authorization code to your application, either i…
24 This flow is similar to the one shown in the [Using OAuth 2.0 for Web Server Applications](https://…
32 All applications that use OAuth 2.0 must have credentials that identify the application to the OAut…
37 … haven't done so already, create your OAuth 2.0 credentials by clicking **Create new Client ID** u…
45 …eds to access, along with a redirect URI, which will handle the response from the OAuth 2.0 server.
49 …ogle.com/), two redirect_uri parameters are created for you: `urn:ietf:wg:oauth:2.0:oob` and `http…
57 #### urn:ietf:wg:oauth:2.0:oob
63 …ur application, as prompted by the text in the confirmation page that the OAuth 2.0 server generat…
65 #### urn:ietf:wg:oauth:2.0:oob:auto
67 urn:ietf:wg:oauth:2.0:oob:auto
68 This is identical to urn:ietf:wg:oauth:2.0:oob, but the text in the confirmation page that the OAut…
84 Your application uses the client object to perform OAuth 2.0 operations, such as generating authori…
86 ## Sending users to Google's OAuth 2.0 server
88 Use either the `run_console` or `run_local_server` function to direct the user to Google's OAuth 2.…
106 Google's OAuth 2.0 server authenticates the user and obtains consent from the user for your applica…
143 # the OAuth 2.0 information for this application, including its client_id and