Laravel 8 请求头
你可以通过 withHeaders
方法添加请求头。该方法接受一个数组格式的键值对:
$response = Http::withHeaders([
'X-First' => 'foo',
'X-Second' => 'bar'
])->post('http://test.com/users', [
'name' => 'Taylor',
]);
你可以通过 withHeaders
方法添加请求头。该方法接受一个数组格式的键值对:
$response = Http::withHeaders([
'X-First' => 'foo',
'X-Second' => 'bar'
])->post('http://test.com/users', [
'name' => 'Taylor',
]);