Object接口 > 直传文件 | ||||||||||||||||||||||||||||||||||||
描述本接口用于在一次 HTTP 会话中上传单一的一个文件。 请求
请求报文的内容以multipart/form-data格式组织: POST / HTTP/1.1 Host: <UpHost> Content-Type: multipart/form-data; boundary=<frontier> Content-Length: <multipartContentLength> --<frontier> Content-Disposition: form-data; name="key" <resource_key> --<frontier> Content-Disposition: form-data; name="x:<custom_name>" <custom_value> --<frontier> Content-Disposition: form-data; name="token" <upload_token> --<frontier> Content-Disposition: form-data; name="crc32" <crc32> --<frontier> Content-Disposition: form-data; name="x-qn-meta-<metaKey>" <metaValue> --<frontier> Content-Disposition: form-data; name="accept" <acceptContentType> --<frontier> Content-Disposition: form-data; name="file"; filename="<fileName>" Content-Type: <contentType> Content-Transfer-Encoding: binary <fileBinaryData> --<frontier>--
该请求操作的实现使用了所有操作的公共请求头。
响应
该请求操作的实现使用了所有操作的公共响应头。
|