You are here

public function Client::request in Auth0 Single Sign On 8.2

Create and send an HTTP request.

Use an absolute path to override the base path of the client, or a relative path to append to the base path of the client. The URL can contain the query string as well.

Parameters

string $method HTTP method.:

string|UriInterface $uri URI object or string.:

array $options Request options to apply. See \GuzzleHttp\RequestOptions.:

Return value

ResponseInterface

Throws

GuzzleException

Overrides ClientInterface::request

1 call to Client::request()
Client::__call in vendor/guzzlehttp/guzzle/src/Client.php

File

vendor/guzzlehttp/guzzle/src/Client.php, line 179

Class

Client
@method ResponseInterface get(string|UriInterface $uri, array $options = []) @method ResponseInterface head(string|UriInterface $uri, array $options = []) @method ResponseInterface put(string|UriInterface $uri, array $options = []) @method…

Namespace

GuzzleHttp

Code

public function request($method, $uri = '', array $options = []) {
  $options[RequestOptions::SYNCHRONOUS] = true;
  return $this
    ->requestAsync($method, $uri, $options)
    ->wait();
}