Home
last modified time | relevance | path

Searched refs:credentials (Results 1 – 25 of 123) sorted by relevance

12345

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DSaslBindRequest.php43 protected $credentials; variable in FreeDSx\\Ldap\\Operation\\Request\\SaslBindRequest
50 public function __construct(string $mechanism, ?string $credentials = null, array $options = []) argument
54 $this->credentials = $credentials;
75 return $this->credentials;
89 if ($this->credentials !== null) {
90 $sasl->addChild(Asn1::octetString($this->credentials));
/plugin/evesso/phpoauthlib/src/OAuth/
DServiceFactory.php96 * @param CredentialsInterface $credentials
105 CredentialsInterface $credentials, argument
119 …return $this->$buildMethod($fullyQualifiedServiceName, $credentials, $storage, $scopes, $baseApiUr…
149 * @param CredentialsInterface $credentials
160 CredentialsInterface $credentials, argument
166 $credentials,
205 * @param CredentialsInterface $credentials
216 CredentialsInterface $credentials, argument
227 …return new $serviceName($credentials, $this->httpClient, $storage, new Signature($credentials), $b…
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/
H A DServiceFactory.php96 * @param CredentialsInterface $credentials
106 CredentialsInterface $credentials, argument
123 $credentials,
158 * @param CredentialsInterface $credentials
169 CredentialsInterface $credentials, argument
176 $credentials,
216 * @param CredentialsInterface $credentials
227 CredentialsInterface $credentials, argument
238 …return new $serviceName($credentials, $this->httpClient, $storage, new Signature($credentials), $b…
/plugin/xcom/scripts/
Dxcom_save.php72 function ini_clients($credentials,$local=false) { argument
73 if(is_string($credentials)) {
74 $credentials = json_decode($credentials);
75 if($credentials instanceof stdClass) {
76 if($local) $this->user = $credentials->user;
77 … return $this->xcom_connect($credentials->url,$credentials->user,$credentials->pwd ,0);
80 if(is_array($credentials)) {
81 if($local) $this->user = $credentials['user'];
82 … return $this->xcom_connect($credentials['url'],$credentials['user'],$credentials['pwd'] ,0);
Dxml.php6 $credentials = json_decode($_REQUEST['credentials']); variable
7 $url = rtrim ($credentials->url,'/') . '/';
19 $client = xcom_connect($url,$credentials->user,$credentials->pwd ,$debug);
/plugin/authgooglesheets/vendor/google/apiclient/src/AuthHandler/
DGuzzle5AuthHandler.php31 CredentialsLoader $credentials, argument
36 $credentials = new FetchAuthTokenCache(
37 $credentials,
43 return $this->attachCredentialsCache($http, $credentials, $tokenCallback);
48 FetchAuthTokenCache $credentials, argument
57 $credentials,
DGuzzle6AuthHandler.php31 CredentialsLoader $credentials, argument
36 $credentials = new FetchAuthTokenCache(
37 $credentials,
43 return $this->attachCredentialsCache($http, $credentials, $tokenCallback);
48 FetchAuthTokenCache $credentials, argument
57 $credentials,
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Signature/
H A DSignature.php14 protected $credentials; variable in OAuth\\OAuth1\\Signature\\Signature
27 * @param CredentialsInterface $credentials
29 public function __construct(CredentialsInterface $credentials) argument
31 $this->credentials = $credentials;
106 $signingKey = rawurlencode($this->credentials->getConsumerSecret()) . '&';
/plugin/evesso/phpoauthlib/src/OAuth/OAuth2/Service/
DAbstractService.php33 * @param CredentialsInterface $credentials
43 CredentialsInterface $credentials, argument
50 parent::__construct($credentials, $httpClient, $storage);
73 'client_id' => $this->credentials->getConsumerId(),
74 'redirect_uri' => $this->credentials->getCallbackUrl(),
108 'client_id' => $this->credentials->getConsumerId(),
109 'client_secret' => $this->credentials->getConsumerSecret(),
110 'redirect_uri' => $this->credentials->getCallbackUrl(),
207 'client_id' => $this->credentials->getConsumerId(),
208 'client_secret' => $this->credentials->getConsumerSecret(),
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DPocket.php16 CredentialsInterface $credentials, argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
48 'redirect_uri' => $this->credentials->getCallbackUrl(),
66 'consumer_key' => $this->credentials->getConsumerId(),
67 'redirect_uri' => $this->credentials->getCallbackUrl(),
91 'consumer_key' => $this->credentials->getConsumerId(),
H A DBitly.php16 CredentialsInterface $credentials, argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
88 'client_id' => $this->credentials->getConsumerId(),
89 'client_secret' => $this->credentials->getConsumerSecret(),
90 'redirect_uri' => $this->credentials->getCallbackUrl(),
H A DDelicious.php30 CredentialsInterface $credentials, argument
37 $credentials,
122 'client_id' => $this->credentials->getConsumerId(),
123 'client_secret' => $this->credentials->getConsumerSecret(),
124 'redirect_uri' => $this->credentials->getCallbackUrl(),
H A DAbstractService.php40 CredentialsInterface $credentials, argument
48 parent::__construct($credentials, $httpClient, $storage);
73 'client_id' => $this->credentials->getConsumerId(),
74 'redirect_uri' => $this->credentials->getCallbackUrl(),
108 'client_id' => $this->credentials->getConsumerId(),
109 'client_secret' => $this->credentials->getConsumerSecret(),
110 'redirect_uri' => $this->credentials->getCallbackUrl(),
204 'client_id' => $this->credentials->getConsumerId(),
205 'client_secret' => $this->credentials->getConsumerSecret(),
/plugin/evesso/phpoauthlib/src/OAuth/Common/Service/
DAbstractService.php18 protected $credentials; variable in OAuth\\Common\\Service\\AbstractService
27 * @param CredentialsInterface $credentials
32 CredentialsInterface $credentials, argument
36 $this->credentials = $credentials;
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Service/
H A DAbstractService.php18 protected $credentials; variable in OAuth\\Common\\Service\\AbstractService
27 * @param CredentialsInterface $credentials
32 CredentialsInterface $credentials, argument
36 $this->credentials = $credentials;
/plugin/authgooglesheets/vendor/google/apiclient/src/
DClient.php92 private $credentials; variable in Google\\Client
185 $this->credentials = $this->config['credentials'];
300 $credentials = $this->createApplicationDefaultCredentials();
303 $creds = $credentials->fetchAuthToken($httpHandler);
427 if ($this->credentials) {
430 $this->credentials,
436 $credentials = $this->createApplicationDefaultCredentials();
439 $credentials,
448 $credentials = $this->createUserRefreshCredentials(
454 $credentials,
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudIot/
DDeviceRegistry.php49 public function setCredentials($credentials) argument
51 $this->credentials = $credentials;
58 return $this->credentials;
DDevice.php113 public function setCredentials($credentials) argument
115 $this->credentials = $credentials;
122 return $this->credentials;
/plugin/webdav/vendor/sabre/http/lib/Auth/
DBasic.php40 $credentials = explode(':', base64_decode(substr($auth, 6)), 2);
42 if (2 !== count($credentials)) {
46 return $credentials;
/plugin/davcal/vendor/sabre/http/lib/Auth/
H A DBasic.php40 $credentials = explode(':', base64_decode(substr($auth, 6)), 2);
42 if (2 !== count($credentials)) {
46 return $credentials;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
DGoogleCloudApigeeV1DeveloperApp.php159 public function setCredentials($credentials) argument
161 $this->credentials = $credentials;
168 return $this->credentials;
DGoogleCloudApigeeV1App.php157 public function setCredentials($credentials) argument
159 $this->credentials = $credentials;
166 return $this->credentials;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Genomics/
DAction.php87 public function setCredentials(Secret $credentials) argument
89 $this->credentials = $credentials;
96 return $this->credentials;
/plugin/authgooglesheets/vendor/google/auth/
DREADME.md38 [application default credentials][application default credentials] for PHP.
41 credentials for use in calling Google APIs.
51 JSON credentials for your project. Go to **APIs & Services** > **Credentials** in
53 **Service account** from the **Add credentials** dropdown.
55 > This file is your *only copy* of these credentials. It should never be
62 putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/my/credentials.json');
78 credentials file, the following code should output a list of your Drive files.
85 // specify the path to your application credentials
86 putenv('GOOGLE_APPLICATION_CREDENTIALS=/path/to/my/credentials.json');
138 // specify the path to your application credentials
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudLifeSciences/
DAction.php157 public function setCredentials(Secret $credentials) argument
159 $this->credentials = $credentials;
166 return $this->credentials;

12345