Home
last modified time | relevance | path

Searched refs:scopes (Results 1 – 25 of 114) sorted by last modified time

12345

/plugin/oauthazure/
H A Daction.php70 $scopes = [
79 $scopes[] = Azure::SCOPE_USERREAD;
80 $scopes[] = Azure::SCOPE_GROUPMEMBER;
83 return $scopes;
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DAbstractService.php23 protected $scopes; variable in OAuth\\OAuth2\\Service\\AbstractService
35 * @param array $scopes
43 $scopes = [], argument
51 foreach ($scopes as $scope) {
57 $this->scopes = $scopes;
79 $parameters['scope'] = implode($this->getScopesDelimiter(), $this->scopes);
339 * Returns delimiter to scopes in getAuthorizationUri
341 * and use scopes with commas as delimiter.
H A DAmazon.php22 * Defined scopes
32 $scopes = array(), argument
35 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DBattleNet.php18 * Defined scopes.
40 $scopes = array(), argument
44 $scopes, $baseApiUri );
H A DFacebook.php22 * Defined scopes
31 // Email scopes
129 $scopes = array(), argument
133 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, true, $apiVersion);
H A DFoursquare.php21 $scopes = array(), argument
24 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DGitHub.php16 * Defined scopes, see http://developer.github.com/v3/oauth/ for definitions.
63 * public_repo scopes already include access to commit status for private and public repositories, respectively.
131 $scopes = [], argument
134 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DHubic.php46 $scopes = array(), argument
53 $scopes,
137 // between scopes instead of spaces
138 $parameters['scope'] = implode(',', $this->scopes);
H A DInstagram.php16 * Defined scopes
30 $scopes = array(), argument
33 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, true);
H A DJawboneUP.php22 * Defined scopes
27 // general information scopes
32 // mood scopes
35 // move scopes
38 // sleep scopes
41 // meal scopes
44 // weight scopes
47 // generic event scopes
56 $scopes = array(), argument
59 parent::__construct($credentials, $httpClient, $storage, $scopes,
[all...]
H A DBitly.php19 $scopes = array(), argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DBitrix24.php83 'scope' => $this->scopes
86 $parameters['scope'] = implode(' ', $this->scopes);
H A DBox.php25 $scopes = array(), argument
28 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, true);
H A DBuffer.php24 $scopes = array(), argument
27 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DDailymotion.php53 $scopes = array(), argument
56 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DDeezer.php30 * Defined scopes
45 $scopes = array(), argument
52 $scopes,
H A DDelicious.php33 $scopes = array(), argument
40 $scopes,
H A DDeviantArt.php22 * Defined scopes
40 $scopes = array(), argument
43 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DDropbox.php25 $scopes = array(), argument
28 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
49 $parameters['scope'] = implode(' ', $this->scopes);
H A DEveOnline.php28 $scopes = array(), argument
31 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DHarvest.php21 $scopes = array(), argument
24 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DHeroku.php22 * Defined scopes
23 * @link https://devcenter.heroku.com/articles/oauth#scopes
39 $scopes = array(), argument
42 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DLinkedin.php22 * Defined scopes
40 $scopes = array(), argument
43 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, true);
H A DMailchimp.php19 $scopes = array(), argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
H A DEtsy.php17 protected $scopes = array(); variable in OAuth\\OAuth1\\Service\\Etsy
39 $scopes = $this->getScopes();
41 if (count($scopes)) {
42 $uri->setQuery('scope=' . implode('%20', $scopes));
108 * Set the scopes for permissions
110 * @param array $scopes
114 public function setScopes(array $scopes) argument
116 if (!is_array($scopes)) {
117 $scopes = array();
120 $this->scopes
[all...]

12345