我工作的Guzzle5代码大致如下:
$guzzle = new \GuzzleHttp\Client();
$request = $guzzle->createRequest('POST', $url);
$request->setHeader('Authorization', 'Bearer ' . $token);
$postBody = $request->getBody();
$postBody->setField('name', 'content');//several times
if (check for file) {
$postBody->addFile(new \GuzzleHttp\Post\PostFile('name', fopen(...));
}
$response = $guzzle->send($request);
如果设置标题并添加文件,我不知道如何使用Guzzle6。
答案 0 :(得分:1)
以下是官方文档中的示例,如何使用Guzzle 6设置标头并将文件添加到POST请求中:
$client = new \GuzzleHttp\Client();
$client->post('/post', [
'multipart' => [
[
'name' => 'foo',
'contents' => 'data',
'headers' => ['X-Baz' => 'bar']
],
[
'name' => 'baz',
'contents' => fopen('/path/to/file', 'r')
],
[
'name' => 'qux',
'contents' => fopen('/path/to/file', 'r'),
'filename' => 'custom_filename.txt'
],
]
]);
multipart选项将请求正文设置为多部分/表单数据表单,如果您不需要处理文件,则可以使用form_params代替multipart选项。
您可以使用帮助headers选项轻松设置任何标题。
您可以在此处找到其他信息Guzzle Upgrade Guide (5.0 to 6.0)
答案 1 :(得分:0)
以下是从我的一个项目中复制的一些代码:
$client = new GuzzleHttp\Client();
$url = 'someurl.com/api';
$body = json_encode([
'variable1' => 'this',
'variable2' => 'that'
]);
$response = $client->post($url, [
'headers' => [
'header_variable1' => 'foo',
'header_variable2' => 'bar'
],
'json' => true,
'timeout' => 3,
'body' => $body
]);
$data = $response->json();