HttpGuzzle 6,带有数据和文件的发布请求

时间:2019-05-06 13:30:27

标签: symfony curl guzzle php-7.2 guzzle6

我正在尝试通过文件和一些字段发布请求,在我使用Guzzle http v3之前,并且下面的代码正在工作,

        $client = Client();
        $request = $client->request('POST', $url, ['headers' => ['Authorization' => 'auth_trusted_header')]]);

        /** @var \GuzzleHttp\Post\PostBody $body */
        $body = $request->getBody();
        $body->setField('authorId', $user->getId());
        $body->setField('context', 'avatar');
        $body->addFile(
            new PostFile(
                'file',
                fopen('data://text/plain;base64,'.$avatar, 'r'),
                $user->getId().'.png'
            )
        );
        try {
            $response = $client->send($request);
        } catch (\Exception $e) {
            $response = false;
        }
  

升级到V6后,我更新了以下代码,但不知何故。...

use GuzzleHttp\Client;
use GuzzleHttp\Exception\ClientException;
use GuzzleHttp\Exception\GuzzleException;
use GuzzleHttp\Psr7\Request as GuzzleRequest;

        $client = new Client();
        $request = new GuzzleRequest('POST', $url, $this->genHeadersSettings(),
            [
                'multipart' => [
                    [
                        'Content-type' => 'multipart/form-data',
                        'name' => 'file',
                        'contents' => fopen('data://text/plain;base64,'.$avatar, 'r'),
                        'filename' => $user->getId().'.png',
                    ]
                ],
                'form_params' => [
                    'authorId' => $user->getId(),
                    'context' => 'avatar',
                    ]
            ]
        );

以上代码引发了Invalid resource type: array ...

错误

有解决方案吗?

1 个答案:

答案 0 :(得分:0)

在这种情况下,您可能实际上不想使用PSR-7界面,因为您是从旧版本的Guzzle转换而来的。您可能希望使用$client->request()方法,该方法主要与旧的Guzzle请求样式兼容,包括您在此处尝试的多篇文章(请参见http://docs.guzzlephp.org/en/stable/quickstart.html#post-form-requests)。

如果确实要切换到PSR-7接口,则需要传递Psr\Http\Message\StreamInterface对象或可以转换为流(例如字符串)而不是数组的对象。这是您收到的错误。