我正在尝试上传一个文件到我的服务器,然后将该文件发送到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是否可以。
谢谢你的帮助!
上云精选
2核2G云服务器 每月9.33元起,个人开发者专属3年机 低至2.3折
It 可以 可以使用 multipart ,但服务器必须正确处理它。无论您是否使用它,它都是一个不同的请求体。
multipart
它通常用在具有(多次)文件上传的HTML表单中。文件被命名(因此是元信息),所以可以有多个文件。文件中也可能有标准的表单字段(文本)。你可能会找到一个更好的解释, by searching ,只是想给出一个简短的解释。
在您的例子中,服务器处理多部分表单数据的方式似乎与“二进制post”没有什么不同,因此它会保存所有数据,包括元信息。
使用 body 传递一个原始的正文,并通过Guzzle向您的 curl 生成相同的请求:
body
curl
$urlAttachments = $this->params['base_url']."/api/v2/uploads.json?filename=".$file->getClientOriginalName(); $opts = [ // auth