Home
last modified time | relevance | path

Searched refs:http (Results 176 – 200 of 4735) sorted by path

12345678910>>...190

/plugin/authgooglesheets/vendor/firebase/php-jwt/
H A DREADME.md34 "iss" => "http://example.org",
35 "aud" => "http://example.com",
63 * Source: http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html#nbfDef
318 [3-Clause BSD](http://opensource.org/licenses/BSD-3-Clause).
/plugin/authgooglesheets/vendor/google/apiclient-services/
H A DLICENSE3 http://www.apache.org/licenses/
195 http://www.apache.org/licenses/LICENSE-2.0
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceConsumerManagement/
H A DService.php245 public function setHttp(Http $http) argument
247 $this->http = $http;
254 return $this->http;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceManagement/
H A DService.php245 public function setHttp(Http $http) argument
247 $this->http = $http;
254 return $this->http;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceNetworking/
H A DService.php245 public function setHttp(Http $http) argument
247 $this->http = $http;
254 return $this->http;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceUsage/
H A DGoogleApiService.php245 public function setHttp(Http $http) argument
247 $this->http = $http;
254 return $this->http;
/plugin/authgooglesheets/vendor/google/apiclient/
H A DLICENSE3 http://www.apache.org/licenses/
195 http://www.apache.org/licenses/LICENSE-2.0
H A DREADME.md129 (in the above example, `http://localhost:8000`).
177 $redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
326 The `authorize` method returns an authorized [Guzzle Client](http://docs.guzzlephp.org/), so any re…
363 In this example we use [PHP Cache](http://www.php-cache.com/). Add this to your project with compos…
402 Google API Client uses [Guzzle](http://docs.guzzlephp.org/) as its default HTTP client. That means …
419 Other Guzzle features such as [Handlers and Middleware](http://docs.guzzlephp.org/en/stable/handler…
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
H A DRevoke.php36 private $http; variable in Google\\AccessToken\\Revoke
42 public function __construct(ClientInterface $http = null) argument
44 $this->http = $http;
75 $httpHandler = HttpHandlerFactory::build($this->http);
H A DVerify.php51 private $http; variable in Google\\AccessToken\\Verify
63 ClientInterface $http = null, argument
67 if (null === $http) {
68 $http = new Client();
75 $this->http = $http;
167 $response = $this->http->get($url);
/plugin/authgooglesheets/vendor/google/apiclient/src/AuthHandler/
H A DGuzzle5AuthHandler.php30 ClientInterface $http, argument
47 ClientInterface $http, argument
54 $authHttp = $this->createAuthHttp($http);
63 $http->getEmitter()->attach($subscriber);
65 return $http;
81 $http->setDefaultOption('auth', 'scoped');
82 $http->getEmitter()->attach($subscriber);
84 return $http;
92 $http->getEmitter()->attach($subscriber);
94 return $http;
[all …]
H A DGuzzle6AuthHandler.php30 ClientInterface $http, argument
47 ClientInterface $http, argument
62 $config = $http->getConfig();
66 $http = new Client($config);
68 return $http;
84 $config = $http->getConfig();
88 $http = new Client($config);
90 return $http;
97 $config = $http->getConfig();
101 $http = new Client($config);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DClient.php67 private $http; variable in Google\\Client
418 $http = $http ?: $this->getHttpClient();
429 $http,
438 $http,
453 $http,
466 return $http;
915 $http = $this->authorize();
918 $http,
1158 $this->http = $http;
1166 if (null === $this->http) {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient/src/Utils/
H A DUriTemplate.php22 * @see http://tools.ietf.org/html/rfc6570
/plugin/authgooglesheets/vendor/google/auth/
H A DCOPYING4 http://www.apache.org/licenses/
196 http://www.apache.org/licenses/LICENSE-2.0
H A DLICENSE3 http://www.apache.org/licenses/
195 http://www.apache.org/licenses/LICENSE-2.0
H A DREADME.md4 …<dt>Homepage</dt><dd><a href="http://www.github.com/google/google-auth-library-php">http://www.git…
22 [Composer](http://getcomposer.org).
303 [ask questions](http://stackoverflow.com/questions/tagged/google-auth-library-php)
304 about the client or APIs on [StackOverflow](http://stackoverflow.com).
311 [Guzzle 5]: http://docs.guzzlephp.org/en/5.3
/plugin/authgooglesheets/vendor/google/auth/src/Credentials/
H A DGCECredentials.php245 $base = 'http://' . self::METADATA_IP . '/computeMetadata/';
289 $base = 'http://' . self::METADATA_IP . '/computeMetadata/';
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md361 query string without being percent encoded. See http://tools.ietf.org/html/rfc3986#appendix-A
403 why I did this: http://ocramius.github.io/blog/fluent-interfaces-are-evil/.
590 http://mtdowling.com/blog/2014/03/15/guzzle-4-rc/
899 * Bug fix: URLs are now resolved correctly based on http://tools.ietf.org/html/rfc3986#section-5.2.…
H A DREADME.md31 $request = new \GuzzleHttp\Psr7\Request('GET', 'http://httpbin.org');
41 - [Documentation](http://guzzlephp.org/)
42 - [Stack Overflow](http://stackoverflow.com/questions/tagged/guzzle)
49 [Composer](http://getcomposer.org).
88 [guzzle-3-docs]: http://guzzle3.readthedocs.org
89 [guzzle-5-docs]: http://guzzle.readthedocs.org/en/5.3/
90 [guzzle-6-docs]: http://guzzle.readthedocs.org/en/latest/
H A DUPGRADING.md7 Guzzle now uses [PSR-7](http://www.php-fig.org/psr/psr-7/) for HTTP messages.
146 [`multipart`](http://guzzle.readthedocs.org/en/latest/request-options.html#multipart)
162 Guzzle now uses [RingPHP](http://ringphp.readthedocs.org/en/latest) to send
170 [Fluent interfaces were removed](http://ocramius.github.io/blog/fluent-interfaces-are-evil)
528 See: http://docs.guzzlephp.org/en/latest/events.html
621 - http://github.com/guzzle/command Provides a high level abstraction over web
623 - http://github.com/guzzle/guzzle-services Provides an implementation of
873 $request = $client->get('http://www.foo.com');
875 // >> http://www.foo.com/
881 $request = $client->get('http://www.foo.com');
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md6 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
7 and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
187 - `(new Uri())->withScheme('http')` will return `'http://localhost'`
H A DREADME.md3 This repository contains a full [PSR-7](http://www.php-fig.org/psr/psr-7/)
68 $original = Psr7\Utils::streamFor(fopen('http://www.google.com', 'r'));
318 $request = new GuzzleHttp\Psr7\Request('GET', 'http://example.com');
720 $base = new Uri('http://example.com/a/b/');
748 Example: `http://example.org/a%c2%b1b` → `http://example.org/a%C2%B1b`
757 Example: `http://example.org/%7Eusern%61me/` → `http://example.org/~username/`
761 Converts the empty path to "/" for http and https URIs.
763 Example: `http://example.org` → `http://example.org/`
777 Example: `http://example.org:80/` → `http://example.org/`
784 Example: `http://example.org/../a/b/../c/./d.html` → `http://example.org/a/c/d.html`
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DServerRequest.php210 …ri = $uri->withScheme(!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' ? 'https' : 'http');
H A DStream.php19 * @see http://php.net/manual/function.fopen.php
20 * @see http://php.net/manual/en/function.gzopen.php

12345678910>>...190