HTTP 客户端
HTTP 客户端
简介
Laravel 为Guzzle HTTP 客户端提供了一套语义化轻量的API,它可以让你快速的发起HTTP请求与其他Web应用程序进行通信。Laravel对Guzzle的常见用例进行了封装以提供良好的开发体验。
创建请求
你可以使用Http
门面提供的head
、get
、post
、put
、patch
和 delete
方法发起请求。首先,让我们看看如何发起一个基本的GET
请求:
use Illuminate\Support\Facades\Http;
$response = Http::get('http://example.com');
get
方法返回一个 Illuminate\Http\Client\Response
的实例,该实例提供了多种方法来检查响应:
$response->body() : string;
$response->json($key = null, $default = null) : mixed;
$response->object() : object;
$response->collect($key = null) : Illuminate\Support\Collection;
$response->status() : int;
$response->successful() : bool;
$response->redirect(): bool;
$response->failed() : bool;
$response->clientError() : bool;
$response->header($header) : string;
$response->headers() : array;
Illuminate\Http\Client\Response
对象还实现了 PHP 的 ArrayAccess
接口,允许你直接在响应上访问 JSON 响应数据:
return Http::get('http://example.com/users/1')['name'];
除了上面列出的响应方法外,还可以使用以下方法来确定响应是否具有给定的状态代码:
$response->ok() : bool; // 200 OK
$response->created() : bool; // 201 Created
$response->accepted() : bool; // 202 Accepted
$response->noContent() : bool; // 204 No Content
$response->movedPermanently() : bool; // 301 Moved Permanently
$response->found() : bool; // 302 Found
$response->badRequest() : bool; // 400 Bad Request
$response->unauthorized() : bool; // 401 Unauthorized
$response->paymentRequired() : bool; // 402 Payment Required
$response->forbidden() : bool; // 403 Forbidden
$response->notFound() : bool; // 404 Not Found
$response->requestTimeout() : bool; // 408 Request Timeout
$response->conflict() : bool; // 409 Conflict
$response->unprocessableEntity() : bool; // 422 Unprocessable Entity
$response->tooManyRequests() : bool; // 429 Too Many Requests
$response->serverError() : bool; // 500 Internal Server Error
URI 模板
HTTP客户端还允许你使用 URI 模板规范构建请求 URL。如果要通过 URI 模板展开 URL 参数,可以使用withUrlParameters
方法:
Http::withUrlParameters([
'endpoint' => 'https://laravel.com',
'page' => 'docs',
'version' => '11.x',
'topic' => 'validation',
])->get('{+endpoint}/{page}/{version}/{topic}');
打印请求信息
如果要在发送请求之前打印输出请求信息并且结束脚本运行,你应该在创建请求前调用dd
方法:
return Http::dd()->get('http://example.com');
请求数据
大多数情况下,POST
、PUT
和PATCH
携带着额外的请求数据是相当常见的。所以,这些方法的第二个参数接受一个包含着请求数据的数组。默认情况下,这些数据会使用application/json
类型随请求发送:
use Illuminate\Support\Facades\Http;
$response = Http::post('http://example.com/users', [
'name' => 'Steve',
'role' => 'Network Administrator',
]);
GET 请求查询参数
在创建 GET
请求时,你可以通过直接向 URL 添加查询字符串或是将键值对作为第二个参数传递给 get
方法:
$response = Http::get('http://example.com/users', [
'name' => 'Taylor',
'page' => 1,
]);
或者,可以使用 withQueryParameters
方法:
Http::retry(3, 100)->withQueryParameters([
'name' => 'Taylor',
'page' => 1,
])->get('http://example.com/users')
发送 URL 编码请求
如果你希望使用 application/x-www-form-urlencoded
作为请求的数据类型,你应该在创建请求前调用 asForm
方法:
$response = Http::asForm()->post('http://example.com/users', [
'name' => 'Sara',
'role' => 'Privacy Consultant',
]);
发送原始数据(Raw)请求
如果你想使用一个原始请求体发送请求,你可以在创建请求前调用 withBody
方法。你还可以将数据类型可以通过该方法的第二个参数提供:
$response = Http::withBody(
base64_encode($photo), 'image/jpeg'
)->post('http://example.com/photo');
Multi-Part 请求
如果您希望以 Multi-Part 请求的形式发送文件,应在发起请求之前调用 attach
方法。此方法接受文件的名称和内容作为参数。如果需要,您可以提供第三个参数,这将被视为文件的文件名,而第四个参数可用于提供与文件相关的头信息:
$response = Http::attach(
'attachment', file_get_contents('photo.jpg'), 'photo.jpg', ['Content-Type' => 'image/jpeg']
)->post('http://example.com/attachments');
除了传递文件的原始内容,你也可以传递 Stream 流数据:
$photo = fopen('photo.jpg', 'r');
$response = Http::attach(
'attachment', $photo, 'photo.jpg'
)->post('http://example.com/attachments');
请求头
可以使用 withHeaders
方法添加请求头, 该方法接受键/值对格式的数组:
$response = Http::withHeaders([
'X-First' => 'foo',
'X-Second' => 'bar'
])->post('http://example.com/users', [
'name' => 'Taylor',
]);
你可以使用 accept
方法指定应用程序响应你的请求所需的内容类型
$response = Http::accept('application/json')->get('http://example.com/users');
为方便起见,您可以使用 acceptJson
方法快速指定你的应用程序需要 application/json
内容类型来响应你的请求:
$response = Http::acceptJson()->get('http://example.com/users');
withHeaders
方法将请求头项合并到请求的现有请求头中,如果需要,你可以使用 replaceHeaders
方法完全替换整个请求头:
$response = Http::withHeaders([
'X-Original' => 'foo',
])->replaceHeaders([
'X-Replacement' => 'bar',
])->post('http://example.com/users', [
'name' => 'Taylor',
]);
认证
你可以分别使用 withBasicAuth
和 withDigestAuth
方法指定基本和摘要身份验证凭据:
// Basic 认证方式...
$response = Http::withBasicAuth('[email protected]', 'secret')->post(/* ... */);
// Digest 认证方式...
$response = Http::withDigestAuth('[email protected]', 'secret')->post(/* ... */);
Bearer 令牌
如果你想要为你的请求快速添加名为 Authorization
的 Token 令牌请求头,您可以使用 withToken
方法:
$response = Http::withToken('token')->post(/* ... */);
超时
你可以使用timeout
方法指定等待响应的最大秒数。默认情况下HTTP客户端将在30秒后超时:
$response = Http::timeout(3)->get(/* ... */);
如果超过给定的超时时间,将会抛出 Illuminate\Http\Client\ConnectionException
的错误.
你可以使用connectTimeout
方法指定尝试连接服务器时等待的最大秒数:
$response = Http::connectTimeout(3)->get(/* ... */);
重试
如果你想要 HTTP 客户端在发生客户端或服务器错误时自动重试请求,你可以使用retry
方法。retry
方法接受请求应该尝试的最大次数和 Laravel 在尝试之间应该等待的毫秒数:
$response = Http::retry(3, 100)->post(/* ... */);
如果你想要手动计算尝试之间睡眠的毫秒数,你可以将闭包作为第二个参数传递给 retry
方法:
use Exception;
$response = Http::retry(3, function (int $attempt, Exception $exception) {
return $attempt * 100;
})->post(/* ... */);
为了方便起见,你也可以为retry
方法的第一个参数传入一个数组。这个数组将被用来决定在后续尝试之间睡眠多少毫秒:
$response = Http::retry([100, 200])->post(/* ... */);
如果需要的话,你可以传递一个第三个参数给retry
方法。第三个参数应该是一个可调用的,用于决定是否真的应该尝试重试。例如,如果初始请求遇到了ConnectionException
,你可能只希望重试请求:
use Exception;
use Illuminate\Http\Client\PendingRequest;
$response = Http::retry(3, 100, function (Exception $exception, PendingRequest $request) {
return $exception instanceof ConnectionException;
})->post(/* ... */);
如果一个请求尝试失败了,你可能希望在进行新尝试之前对请求做出改变。你可以通过修改提供给retry
方法闭包的请求参数来实现这一点。例如,如果第一次尝试返回了一个认证错误,你可能希望用一个新的授权令牌重试请求:
use Exception;
use Illuminate\Http\Client\PendingRequest;
use Illuminate\Http\Client\RequestException;
$response = Http::withToken($this->getToken())->retry(2, 0, function (Exception $exception, PendingRequest $request) {
if (! $exception instanceof RequestException || $exception->response->status() !== 401) {
return false;
}
$request->withToken($this->getNewToken());
return true;
})->post(/* ... */);
如果所有的请求都失败了,将会抛出一个Illuminate\Http\Client\RequestException
错误。 如果你想要禁用这种行为,可以把throw
设置为false
。 当禁用时,客户端收到的最后一个响应将在所有重试尝试之后被返回:
$response = Http::retry(3, 100, throw: false)->post(/* ... */);
[!WARNING]
如果所有的请求都因为连接问题失败了,即使把throw
设置为false
,依然会抛出Illuminate\Http\Client\ConnectionException
错误
错误处理
与 Guzzle 的默认行为不同,Laravel 的 HTTP 客户端包装器在客户端或服务器错误(服务器返回4xx
和5xx
状态码)时不会抛出异常。你可以使用successful
、clientError
或者serverError
方法来确定是否返回了这些错误之一:
// 判断状态码是否 >= 200 且 < 300...
$response->successful();
// 判断状态码是否 >= 400...
$response->failed();
// 判断响状态码是否是 4xx
$response->clientError();
// 判断响状态码是否是 5xx
$response->serverError();
// 如果发生了客户端或服务器错误,立即执行给定的回调...
$response->onError(callable $callback);
抛出异常
如果你有一个响应实例,并希望如果响应状态码指示客户端或服务器错误时抛出一个 Illuminate\Http\Client\RequestException
实例,你可以使用 throw
或 throwIf
方法:
use Illuminate\Http\Client\Response;
$response = Http::post(/* ... */);
// 如果客户端或服务器错误发生,抛出异常...
$response->throw();
// 如果错误发生并且给定条件为真,抛出异常..
$response->throwIf($condition);
// 如果错误发生并且给定闭包解析为真,抛出异常...
$response->throwIf(fn (Response $response) => true);
// 如果错误发生并且给定条件为假,抛出异常...
$response->throwUnless($condition);
// 如果错误发生并且给定闭包解析为假,抛出异常...
$response->throwUnless(fn (Response $response) => false);
// 如果响应有特定的状态码,抛出异常...
$response->throwIfStatus(403);
// 除非响应有特定的状态码,否则抛出异常...
$response->throwUnlessStatus(200);
return $response['user']['id'];
Illuminate\Http\Client\RequestException
实例有一个公共的 $response
属性,该属性允许你检查返回的响应。
如果没有发生错误,throw
方法会返回响应实例,允许你将其他操作链式调用到 throw
方法上:
return Http::post(/* ... */)->throw()->json();
如果你想要在抛出异常之前执行一些附加逻辑,你可以传递一个闭包给 throw
方法。闭包被调用后,异常将自动被抛出,所以你不需要在闭包内重新抛出异常:
use Illuminate\Http\Client\Response;
use Illuminate\Http\Client\RequestException;
return Http::post(/* ... */)->throw(function (Response $response, RequestException $e) {
// ...
})->json();
Guzzle 中间件
由于 Laravel 的 HTTP 客户端由 Guzzle 提供支持,你可以利用 Guzzle 中间件来操作正在进行的请求或检查传入的响应。要操作正在进行的请求,通过 withRequestMiddleware
方法注册一个 Guzzle 中间件:
use Illuminate\Support\Facades\Http;
use Psr\Http\Message\RequestInterface;
$response = Http::withRequestMiddleware(
function (RequestInterface $request) {
return $request->withHeader('X-Example', 'Value');
}
)->get('http://example.com');
同样,你可以通过注册 withResponseMiddleware
方法的中间件来检查传入的 HTTP 响应:
use Illuminate\Support\Facades\Http;
use Psr\Http\Message\ResponseInterface;
$response = Http::withResponseMiddleware(
function (ResponseInterface $response) {
$header = $response->getHeader('X-Example');
// ...
return $response;
}
)->get('http://example.com');
全局中间件
有时,你可能希望注册一个适用于每个正在进行的请求和传入响应的中间件。为此,你可以使用 globalRequestMiddleware
和 globalResponseMiddleware
方法。通常,这些方法应该在你的应用的 AppServiceProvider
的 boot
方法中调用:
use Illuminate\Support\Facades\Http;
Http::globalRequestMiddleware(fn ($request) => $request->withHeader(
'User-Agent', 'Example Application/1.0'
));
Http::globalResponseMiddleware(fn ($response) => $response->withHeader(
'X-Finished-At', now()->toDateTimeString()
));
Guzzle 选项
你可以使用 withOptions
方法为正在进行的请求指定额外的 Guzzle 请求选项。withOptions
方法接受一个键值对数组:
$response = Http::withOptions([
'debug' => true,
])->get('http://example.com/users');
全局选项
要为每个正在进行的请求配置默认选项,你可以使用 globalOptions
方法。通常,该方法应该从你的应用的 AppServiceProvider
的 boot
方法中调用:
use Illuminate\Support\Facades\Http;
/**
* 启动任何应用服务。
*/
public function boot(): void
{
Http::globalOptions([
'allow_redirects' => false,
]);
}
并发请求
有时,你可能希望同时进行多个 HTTP 请求。换句话说,你希望同时派发几个请求,而不是顺序地发出请求。这在与慢速 HTTP API 交互时可以带来显著的性能提升。
幸运的是,你可以使用 pool
方法来实现这一点。pool
方法接受一个闭包,该闭包接收一个 Illuminate\Http\Client\Pool
实例,允许你轻松地向请求池添加请求以进行派发:
use Illuminate\Http\Client\Pool;
use Illuminate\Support\Facades\Http;
$responses = Http::pool(fn (Pool $pool) => [
$pool->get('http://localhost/first'),
$pool->get('http://localhost/second'),
$pool->get('http://localhost/third'),
]);
return $responses[0]->ok() &&
$responses[1]->ok() &&
$responses[2]->ok();
如你所见,每个响应实例都可以根据它被加入池的顺序访问。如果你愿意,可以使用 as
方法为请求命名,这样可以按名称访问对应的响应:
use Illuminate\Http\Client\Pool;
use Illuminate\Support\Facades\Http;
$responses = Http::pool(fn (Pool $pool) => [
$pool->as('first')->get('http://localhost/first'),
$pool->as('second')->get('http://localhost/second'),
$pool->as('third')->get('http://localhost/third'),
]);
return $responses['first']->ok();
自定义并发请求
pool
方法不能与其他 HTTP 客户端方法(例如 withHeaders
或 middleware
方法)链式调用。如果你想要将自定义头或中间件应用于池中的请求,应该在池中的每个请求上配置这些选项:
use Illuminate\Http\Client\Pool;
use Illuminate\Support\Facades\Http;
$headers = [
'X-Example' => 'example',
];
$responses = Http::pool(fn (Pool $pool) => [
$pool->withHeaders($headers)->get('http://laravel.test/test'),
$pool->withHeaders($headers)->get('http://laravel.test/test'),
$pool->withHeaders($headers)->get('http://laravel.test/test'),
]);
宏
Laravel HTTP 客户端允许你定义「宏」,它可以作为一个流畅的、富有表现力的机制来配置常见的请求路径和头信息,当与整个应用中的服务交云时使用。开始使用宏,你可以在应用的 App\Providers\AppServiceProvider
类的 boot
方法中定义:
use Illuminate\Support\Facades\Http;
/**
* 启动任何应用服务。
*/
public function boot(): void
{
Http::macro('github', function () {
return Http::withHeaders([
'X-Example' => 'example',
])->baseUrl('https://github.com');
});
}
一旦你的宏配置好了,你可以在应用中的任何地方调用它来创建一个带有指定配置的待处理请求:
$response = Http::github()->get('/');
测试
许多 Laravel 服务提供了帮助你轻松且有表现力地编写测试的功能,Laravel 的 HTTP 客户端也不例外。Http
facade 的 fake
方法允许你指导 HTTP 客户端在请求时返回存根 / 虚拟响应。
伪造响应
例如,要指示 HTTP 客户端在每个请求中返回空的 200
状态码响应,你可以调用 fake
方法而不传递参数:
use Illuminate\Support\Facades\Http;
Http::fake();
$response = Http::post(/* ... */);
伪造特定的 URL
或者,你可以向 fake
方法传递一个数组。数组的键应该代表你希望伪造的 URL 模式及其关联的响应。*
字符可用作通配符。对于没有被伪造的 URL 发出的任何请求都会被实际执行。你可以使用 Http
facade 的 response
方法为这些端点构建存根 / 虚拟响应:
Http::fake([
// 为 GitHub 端点存根一个 JSON 响应...
'github.com/*' => Http::response(['foo' => 'bar'], 200, $headers),
// 为 Google 端点存根一个字符串响应...
'google.com/*' => Http::response('Hello World', 200, $headers),
]);
如果你想指定一个后备 URL 模式来存根所有不匹配的 URL,你可以使用单个 *
字符:
Http::fake([
// 为 GitHub 端点存根 JSON 响应...
'github.com/*' => Http::response(['foo' => 'bar'], 200, ['Headers']),
// 为其他所有端点存根字符串响应...
'*' => Http::response('Hello World', 200, ['Headers']),
]);
伪造响应序列
有时候,你可能需要为单个 URL 指定其一系列的伪造响应的返回顺序。你可以使用 Http::sequence
方法来构建响应,以实现这个功能:
Http::fake([
// 存根 GitHub端点的一系列响应...
'github.com/*' => Http::sequence()
->push('Hello World', 200)
->push(['foo' => 'bar'], 200)
->pushStatus(404),
]);
当一个响应序列中的所有响应都被消费后,任何进一步的请求都会导致响应序列抛出异常。如果你想指定当序列为空时应该返回的默认响应,你可以使用 whenEmpty
方法:
Http::fake([
// 为 GitHub 端点存根一系列响应...
'github.com/*' => Http::sequence()
->push('Hello World', 200)
->push(['foo' => 'bar'], 200)
->whenEmpty(Http::response()),
]);
如果你想要伪造一个响应序列,但你又期望在伪造的时候无需指定一个特定的 URL 匹配模式,那么你可以使用 Http::fakeSequence
方法:
Http::fakeSequence()
->push('Hello World', 200)
->whenEmpty(Http::response());
Fake 回调
如果你需要更复杂的逻辑来确定对某些端点返回什么响应,你可以将一个闭包传递给 fake
方法。这个闭包将接收一个 Illuminate\Http\Client\Request
实例并应返回一个响应实例。在你的闭包中,你可以执行任何必要的逻辑来确定返回哪种类型的响应:
use Illuminate\Http\Client\Request;
Http::fake(function (Request $request) {
return Http::response('Hello World', 200);
});
避免「流浪的」请求
如果你想确保通过 HTTP 客户端发送的所有请求都在你的个别测试或完整测试套件中被模拟过,你可以调用 preventStrayRequests
方法。调用这个方法后,任何没有相应假响应的请求都会抛出异常,而不是进行实际的 HTTP 请求:
use Illuminate\Support\Facades\Http;
Http::preventStrayRequests();
Http::fake([
'github.com/*' => Http::response('ok'),
]);
// 将会返回 OK 响应...
Http::get('https://github.com/laravel/framework');
// 抛出一个异常...
Http::get('https://laravel.com');
检查请求
当你伪造响应时,你可能偶尔希望检查客户端接收到的请求,以确保你的应用程序正在发送正确的数据或头部。你可以在调用 Http::fake
后通过调用 Http::assertSent
方法来完成这个操作。
assertSent
方法接受一个闭包,该闭包会接收一个 Illuminate\Http\Client\Request
实例,并应返回一个布尔值,表明请求是否符合你的预期。为了使测试通过,至少必须发出一个与给定预期相匹配的请求:
use Illuminate\Http\Client\Request;
use Illuminate\Support\Facades\Http;
Http::fake();
Http::withHeaders([
'X-First' => 'foo',
])->post('http://example.com/users', [
'name' => 'Taylor',
'role' => 'Developer',
]);
Http::assertSent(function (Request $request) {
return $request->hasHeader('X-First', 'foo') &&
$request->url() == 'http://example.com/users' &&
$request['name'] == 'Taylor' &&
$request['role'] == 'Developer';
});
如果需要,你可以使用 assertNotSent
方法来断言特定的请求没有被发送:
use Illuminate\Http\Client\Request;
use Illuminate\Support\Facades\Http;
Http::fake();
Http::post('http://example.com/users', [
'name' => 'Taylor',
'role' => 'Developer',
]);
Http::assertNotSent(function (Request $request) {
return $request->url() === 'http://example.com/posts';
});
你可以使用 assertSentCount
方法来断言在测试期间「发送」的请求数量:
Http::fake();
Http::assertSentCount(5);
或者,你也可以使用 assertNothingSent
方法来断言在测试期间没有发送任何请求:
Http::fake();
Http::assertNothingSent();
记录请求和响应
你可以使用 recorded
方法来收集所有请求及其对应的响应。recorded
方法返回一个包含 Illuminate\Http\Client\Request
和 Illuminate\Http\Client\Response
实例的数组集合:
Http::fake([
'https://laravel.com' => Http::response(status: 500),
'https://nova.laravel.com/' => Http::response(),
]);
Http::get('https://laravel.com');
Http::get('https://nova.laravel.com/');
$recorded = Http::recorded();
[$request, $response] = $recorded[0];
此外,recorded
方法接受一个闭包,该闭包会接收一个 Illuminate\Http\Client\Request
实例和一个 Illuminate\Http\Client\Response
实例,并且可以用来根据你的预期过滤请求 / 响应对:
use Illuminate\Http\Client\Request;
use Illuminate\Http\Client\Response;
Http::fake([
'https://laravel.com' => Http::response(status: 500),
'https://nova.laravel.com/' => Http::response(),
]);
Http::get('https://laravel.com');
Http::get('https://nova.laravel.com/');
$recorded = Http::recorded(function (Request $request, Response $response) {
return $request->url() !== 'https://laravel.com' &&
$response->successful();
});
事件
在发送 HTTP 请求的过程中,Laravel 会触发三个事件。RequestSending
事件在请求发送之前触发,而 ResponseReceived
事件在接收到给定请求的响应后触发。如果没有收到给定请求的响应,则会触发 ConnectionFailed
事件。
RequestSending
和 ConnectionFailed
事件都包含一个公共的 $request
属性,你可以使用它来检查 Illuminate\Http\Client\Request
实例。同样地,ResponseReceived
事件包含一个 $request
属性以及一个 $response
属性,可用于检查 Illuminate\Http\Client\Response
实例。你可以为你的应用程序中的这些事件创建事件监听器:
use Illuminate\Http\Client\Events\RequestSending;
class LogRequest
{
/**
* 处理给定的事件。
*/
public function handle(RequestSending $event): void
{
// $event->request ...
}
}
原文地址:cndocs/11.x/ht...
译文地址:cndocs/11.x/ht...