我正在尝试将文件上传到我的服务器,然后将该文件发送到 Zendesk。Zendesk 文档展示了如何:
curl "https://{subdomain}.zendesk.com/api/v2/uploads.json?filename=myfile.dat&token={optional_token}" \
-v -u {email_address}:{password} \
-H "Content-Type: application/binary" \
--data-binary @file.dat -X POST
这工作正常。我现在必须用 Guzzle(版本 6)重写它。我正在使用 Symfony 2.7:
$file = $request->files->get('file');
$urlAttachments = $this->params['base_url']."/api/v2/uploads.json?filename=".$file->getClientOriginalName();
$body = [
'auth' => [$this->params['user'], $this->params['pass']],
'multipart' => [
[
'name' => $archivo->getClientOriginalName(),
'contents' => fopen($file->getRealPath(), "r"),
],
]
];
$client = new \GuzzleHttp\Client();
$response = $client->request('POST', $urlAttachments, $body);
$response = json_decode($response->getBody(), true);
该文件正在上传,但是当我下载它时,它的内容中还会包含一些元数据(破坏了一些其他文件类型)。我想我没有正确上传它,因为卷发的另一种方式可以正常工作。
--5b8003c370f19
Content-Disposition: form-data; name="test.txt"; filename="php6wiix1"
Content-Length: 1040
... The rest of the original content of the test file...
--5b8003c370f19--
我不知道为什么这些数据也作为文件的一部分发送(我不想这样做),或者是否可以为此使用 multipart。
谢谢你的帮助!