Home
last modified time | relevance | path

Searched refs:scopes (Results 1 – 25 of 114) sorted by path

12345

/plugin/authgoogle/google/
H A DGoogle_Client.php90 protected $scopes = array(); variable in Google_Client
136 $scopes = array();
137 if ($this->scopes) {
138 $scopes = $this->scopes;
143 $scopes = array_merge($val['scope'], $scopes);
145 $scopes[] = $val['scope'];
148 $scopes[] = 'https://www.googleapis.com/auth/' . $key;
349 …* @param array $scopes, ie: array('https://www.googleapis.com/auth/plus.me', 'https://www.googleap…
351 public function setScopes($scopes) { argument
352 $this->scopes = is_string($scopes) ? explode(" ", $scopes) : $scopes;
[all …]
/plugin/authgoogle/google/auth/
H A DGoogle_AssertionCredentials.php27 public $scopes; variable in Google_AssertionCredentials
49 $scopes, argument
/plugin/authgoogle/google/contrib/
H A DGoogle_ComputeService.php4097 public $scopes; variable in Google_ServiceAccount
4104 public function setScopes(/* array(Google_string) */ $scopes) { argument
4105 $this->assertIsArray($scopes, 'Google_string', __METHOD__);
4106 $this->scopes = $scopes;
4109 return $this->scopes;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AccessContextManager/
H A DAccessPolicy.php38 public $scopes; variable in Google\\Service\\AccessContextManager\\AccessPolicy
89 public function setScopes($scopes) argument
91 $this->scopes = $scopes;
98 return $this->scopes;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1ApiProduct.php80 public $scopes; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1ApiProduct
295 public function setScopes($scopes) argument
297 $this->scopes = $scopes;
304 return $this->scopes;
H A DGoogleCloudApigeeV1App.php64 public $scopes; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1App
227 public function setScopes($scopes) argument
229 $this->scopes = $scopes;
236 return $this->scopes;
H A DGoogleCloudApigeeV1Credential.php46 public $scopes; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1Credential
139 public function setScopes($scopes) argument
141 $this->scopes = $scopes;
148 return $this->scopes;
H A DGoogleCloudApigeeV1DeveloperApp.php66 public $scopes; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1DeveloperApp
229 public function setScopes($scopes) argument
231 $this->scopes = $scopes;
238 return $this->scopes;
H A DGoogleCloudApigeeV1DeveloperAppKey.php52 public $scopes; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1DeveloperAppKey
159 public function setScopes($scopes) argument
161 $this->scopes = $scopes;
168 return $this->scopes;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/BigQueryDataTransfer/
H A DDataSource.php76 public $scopes; variable in Google\\Service\\BigQueryDataTransfer\\DataSource
279 public function setScopes($scopes) argument
281 $this->scopes = $scopes;
288 return $this->scopes;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudAsset/
H A DGoogleIdentityAccesscontextmanagerV1AccessPolicy.php38 public $scopes; variable in Google\\Service\\CloudAsset\\GoogleIdentityAccesscontextmanagerV1AccessPolicy
89 public function setScopes($scopes) argument
91 $this->scopes = $scopes;
98 return $this->scopes;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudLifeSciences/
H A DServiceAccount.php30 public $scopes; variable in Google\\Service\\CloudLifeSciences\\ServiceAccount
49 public function setScopes($scopes) argument
51 $this->scopes = $scopes;
58 return $this->scopes;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DInstancesSetServiceAccountRequest.php30 public $scopes; variable in Google\\Service\\Compute\\InstancesSetServiceAccountRequest
49 public function setScopes($scopes) argument
51 $this->scopes = $scopes;
58 return $this->scopes;
H A DServiceAccount.php30 public $scopes; variable in Google\\Service\\Compute\\ServiceAccount
49 public function setScopes($scopes) argument
51 $this->scopes = $scopes;
58 return $this->scopes;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/
H A DToken.php50 public $scopes; variable in Google\\Service\\Directory\\Token
143 public function setScopes($scopes) argument
145 $this->scopes = $scopes;
152 return $this->scopes;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Genomics/
H A DServiceAccount.php30 public $scopes; variable in Google\\Service\\Genomics\\ServiceAccount
49 public function setScopes($scopes) argument
51 $this->scopes = $scopes;
58 return $this->scopes;
/plugin/authgooglesheets/vendor/google/apiclient/
H A DREADME.md166 1. Set the scopes required for the API you are going to call
213 1. Set the scopes required for the API you are going to call
/plugin/authgooglesheets/vendor/google/apiclient/src/AuthHandler/
H A DGuzzle5AuthHandler.php68 public function attachToken(ClientInterface $http, array $token, array $scopes) argument
70 $tokenFunc = function ($scopes) use ($token) {
76 $scopes,
H A DGuzzle6AuthHandler.php71 public function attachToken(ClientInterface $http, array $token, array $scopes) argument
73 $tokenFunc = function ($scopes) use ($token) {
79 $scopes,
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DClient.php445 $scopes = $this->prepareScopes();
449 $scopes,
459 return $authHandler->attachToken($http, $token, (array) $scopes);
1222 $scopes = $this->prepareScopes();
1236 $scopes,
1244 $scopes,
/plugin/authgooglesheets/vendor/google/auth/
H A DREADME.md88 // define the scopes for your API call
89 $scopes = ['https://www.googleapis.com/auth/drive.readonly'];
92 $middleware = ApplicationDefaultCredentials::getMiddleware($scopes);
123 $subscriber = ApplicationDefaultCredentials::getSubscriber($scopes);
188 // define the scopes for your API call
189 $scopes = ['https://www.googleapis.com/auth/drive.readonly'];
192 $creds = CredentialsLoader::makeCredentials($scopes, $jsonKey);
/plugin/authgooglesheets/vendor/google/auth/src/Middleware/
H A DScopedAccessTokenMiddleware.php50 private $scopes; variable in Google\\Auth\\Middleware\\ScopedAccessTokenMiddleware
62 $scopes, argument
67 if (!(is_string($scopes) || is_array($scopes))) {
72 $this->scopes = $scopes;
136 if (is_string($this->scopes)) {
137 $key .= $this->scopes;
138 } elseif (is_array($this->scopes)) {
139 $key .= implode(':', $this->scopes);
160 $token = call_user_func($this->tokenFunc, $this->scopes);
/plugin/codemirror/dist/modes/
H A Djulia.min.js1scopes.length<=b){return null}return a.scopes[a.scopes.length-(b+1)]}function A(a,b){if(a.match(/^…
H A Djulia.min.js.map1scopes","length","tokenBase","stream","match","tokenize","tokenComment","leavingExpr","sol","eatSp…
H A Dpython.min.js1 …isterHelper("hintWords","python",d.concat(e));function f(a){return a.scopes[a.scopes.length-1]}a.d…

12345