• Home
  • Raw
  • Download

Lines Matching full:your

8 - Your installed app will run on devices that have a system browser and rich input capabilities, su…
10 … [Google Sign-In](https://developers.google.com/identity) to authenticate your users. The Google S…
12 If your app will run on devices that do not have access to a system browser, or devices with limite…
16 To use OAuth 2.0 in a locally-installed application, first create application credentials for your
18your application needs to access a user's data with a Google API, your application sends the user …
20 …zation code to your application, either in the title bar of the browser or in the query string of …
22 Finally, your application can use the access token to call Google APIs.
26 - When creating a client ID, you specify that your application is an Installed application. This re…
27 …t secret obtained from the API Console are embedded in the source code of your application. In thi…
28 - The authorization code can be returned to your application in the title bar of the browser or in …
32 …er. Applications that have these credentials can access the APIs that you enabled for your project.
34 To obtain application credentials for your project, complete these steps:
37your OAuth 2.0 credentials by clicking **Create new Client ID** under the **OAuth** heading and se…
39 Download the client_secrets.json file and securely store it in a location that only your applicatio…
41 …ode to your application—for example, on GitHub—store the client_secrets.json file outside of your
45 …ted to configure a client object in your application. When you configure a client object, you spec…
49 …b` and `http://localhost`. The value your application uses determines how the authorization code i…
53 …e using this URI, your application must be listening on the local web server. This is possible on …
61your application can then detect that the page has loaded, and can read the title of the HTML page…
63 If your platform doesn't allow you to detect that the page has loaded or read the title of the page…
70 This is useful when your application reads the title of the HTML page (by checking window titles on…
84 Your application uses the client object to perform OAuth 2.0 operations, such as generating authori…
106 Google's OAuth 2.0 server authenticates the user and obtains consent from the user for your applica…