Home
last modified time | relevance | path

Searched refs:httpClient (Results 1 – 25 of 73) sorted by relevance

123

/plugin/evesso/phpoauthlib/src/OAuth/
H A DServiceFactory.php31 protected $httpClient; variable in OAuth\\ServiceFactory
50 * @param ClientInterface $httpClient
54 public function setHttpClient(ClientInterface $httpClient) argument
56 $this->httpClient = $httpClient;
110 if (!$this->httpClient) {
112 $this->httpClient = new StreamClient();
167 $this->httpClient,
227 …return new $serviceName($credentials, $this->httpClient, $storage, new Signature($credentials), $b…
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/
H A DServiceFactory.php31 protected $httpClient; variable in OAuth\\ServiceFactory
50 * @param ClientInterface $httpClient
54 public function setHttpClient(ClientInterface $httpClient) argument
56 $this->httpClient = $httpClient;
112 if (!$this->httpClient) {
114 $this->httpClient = new StreamClient();
177 $this->httpClient,
238 return new $serviceName($credentials, $this->httpClient, $storage, new Signature($credentials), $baseApiUri);
/plugin/zerolinecss/
H A Daction.php14 private $httpClient = null; variable in action_plugin_zerolinecss
38 $data = $this->httpClient->get( DOKU_URL . $link['href'] );
58 if ( $this->httpClient != null ) {
62 $this->httpClient = new dokuwiki\HTTP\DokuHTTPClient();
/plugin/issuelinks/classes/
H A DHTTPRequestException.php19 public function __construct($message, \DokuHTTPClient $httpClient, $url, $method) argument
21 $this->code = $httpClient->status;
22 $this->httpError = $httpClient->error;
23 $this->responseBody = $httpClient->resp_body;
/plugin/evesso/phpoauthlib/src/OAuth/Common/Service/
H A DAbstractService.php21 protected $httpClient; variable in OAuth\\Common\\Service\\AbstractService
28 * @param ClientInterface $httpClient
33 ClientInterface $httpClient, argument
37 $this->httpClient = $httpClient;
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Service/
H A DAbstractService.php21 protected $httpClient; variable in OAuth\\Common\\Service\\AbstractService
28 * @param ClientInterface $httpClient
33 ClientInterface $httpClient, argument
37 $this->httpClient = $httpClient;
/plugin/authgooglesheets/vendor/google/auth/src/HttpHandler/
H A DHttpClientCache.php30 private static $httpClient; variable in Google\\Auth\\HttpHandler\\HttpClientCache
42 self::$httpClient = $client;
52 return self::$httpClient;
/plugin/keywords/action/
H A Dkeywords.php77 $httpClient = new DokuHTTPClient();
79 $httpClient->headers = [
83 $status = $httpClient->sendRequest($this->CHATGPT_API_URL, json_encode( [
119 $data = json_decode( $httpClient->resp_body );
122 …Logger::error( "An error occurred during the Chat GPT call", $httpClient->error, __FILE__, __LINE_…
/plugin/multiorphan/action/
H A Dmultiorphan.php356 $httpClient = new dokuwiki\HTTP\DokuHTTPClient();
357 $httpClient->keep_alive = false; // just close it already.
358 $httpClient->max_bodysize = 0;
359 $data = $httpClient->sendRequest( $event->data['entryID'], null, 'GET' );
360 …$event->data['exists'] = ( $httpClient->status >= 200 && $httpClient->status <= 200 ) || $httpClie…
361 $event->data['status'] = $httpClient->status;
363 if ( !empty( $httpClient->error ) ) {
364 $event->data['error'] = $httpClient->error;
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DPocket.php17 ClientInterface $httpClient, argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
63 $responseBody = $this->httpClient->retrieveResponse(
95 $responseBody = $this->httpClient->retrieveResponse(
H A DBitly.php17 ClientInterface $httpClient, argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
94 $responseBody = $this->httpClient->retrieveResponse(
H A DDelicious.php31 ClientInterface $httpClient, argument
38 $httpClient,
128 $responseBody = $this->httpClient->retrieveResponse(
H A DAbstractService.php41 ClientInterface $httpClient, argument
48 parent::__construct($credentials, $httpClient, $storage);
114 $responseBody = $this->httpClient->retrieveResponse(
175 return $this->httpClient->retrieveResponse($uri, $body, $extraHeaders, $method);
209 $responseBody = $this->httpClient->retrieveResponse(
H A DFoursquare.php19 ClientInterface $httpClient, argument
24 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DInstagram.php28 ClientInterface $httpClient, argument
33 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, true);
H A DBox.php23 ClientInterface $httpClient, argument
28 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, true);
H A DDropbox.php23 ClientInterface $httpClient, argument
28 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DMondo.php17 ClientInterface $httpClient, argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri, true);
H A DNest.php32 ClientInterface $httpClient, argument
39 $httpClient,
H A DRunKeeper.php22 ClientInterface $httpClient, argument
27 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DSoundCloud.php17 ClientInterface $httpClient, argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
H A DYammer.php17 ClientInterface $httpClient, argument
22 parent::__construct($credentials, $httpClient, $storage, $scopes, $baseApiUri);
/plugin/evesso/phpoauthlib/src/OAuth/OAuth2/Service/
H A DAbstractService.php34 * @param ClientInterface $httpClient
44 ClientInterface $httpClient, argument
50 parent::__construct($credentials, $httpClient, $storage);
114 $responseBody = $this->httpClient->retrieveResponse(
174 return $this->httpClient->retrieveResponse($uri, $body, $extraHeaders, $method);
212 $responseBody = $this->httpClient->retrieveResponse(
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
H A DAbstractService.php31 ClientInterface $httpClient, argument
36 parent::__construct($credentials, $httpClient, $storage);
52 $responseBody = $this->httpClient->retrieveResponse($this->getRequestTokenEndpoint(), array(), $headers);
100 $responseBody = $this->httpClient->retrieveResponse($this->getAccessTokenEndpoint(), $bodyParams, $headers);
141 return $this->httpClient->retrieveResponse($uri, $body, $headers, $method);
H A DYahoo.php19 ClientInterface $httpClient, argument
24 parent::__construct($credentials, $httpClient, $storage, $signature, $baseApiUri);
76 $responseBody = $this->httpClient->retrieveResponse($this->getAccessTokenEndpoint(), $bodyParams, $headers);

123