Lines Matching refs:to

21 The recommended way to install the google auth library is through
29 Next, run the Composer command to install the latest stable version:
40 The Application Default Credentials provide a simple way to get authorization
43 They are best suited for cases when the call needs to have the same identity
45 the recommended approach to authorize calls to Cloud APIs, particularly when
50 To use `Application Default Credentials`, You first need to download a set of
51 JSON credentials for your project. Go to **APIs & Services** > **Credentials** in
58 Once downloaded, store the path to this file in the
62 putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/my/credentials.json');
65 > PHP's `putenv` function is just one way to set an environment variable.
68 #### Enable the API you want to use
71 enabled. Go to **APIs & Auth** > **APIs** in the
72 [Google Developers Console][developer console] and enable the APIs you'd like to
77 As long as you update the environment variable below to point to *your* JSON
85 // specify the path to your application credentials
86 putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/my/credentials.json');
129 Proxy (IAP), you will need to fetch an ID token to access your application. For
138 // specify the path to your application credentials
139 putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/my/credentials.json');
168 [`Cloud Run Invoker`](https://cloud.google.com/run/docs/authenticating/service-to-service)
171 For invoking Cloud Identity-Aware Proxy, you will need to pass the Client ID
172 used when you set up your protected resource as the target audience. See how to
176 If you want to use a specific JSON key instead of using `GOOGLE_APPLICATION_CREDENTIALS` environmen…
223 the Authorization header to your application without processing the content.
232 // specify the path to your application credentials
233 putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/my/credentials.json');
262 If you are [using Google ID tokens to authenticate users][google-id-tokens], use
263 the `Google\Auth\AccessToken` class to verify the ID token:
273 (IAP), you can verify the ID token coming from the IAP server by pointing to the
302 hesitate to