我尝试使用CPPREST SDK将图像上传到HipChat但没有成功。有一些例子可以将图像上传到其他服务器,但是HipChat API似乎更复杂(对我来说这是一个非常新的,我无法填补空白......)。
来自HipChat REST API文档(https://www.hipchat.com/docs/apiv2/method/share_file_with_room):
与房间共享文件。
将请求格式化为multipart /与内容类型application / json的单个部分相关,以及第二个部分包含您的文件。
注意: 包含该文件的部分必须包含name =" file"在部分的Content-Disposition标题中。 包含消息的application / json部分是可选的,可以排除,但需要文件部分
示例请求:
接头:
内容类型:multipart / related;边界= boundary123456
体:
- boundary123456 Content-Type:application / json;字符集= UTF-8
内容 - 处置:附件;命名="元数据"
{" message":"查看此文件上传!"}
- boundary123456 内容类型:image / png
内容 - 处置:附件;命名="文件&#34 ;;文件名=" upload.png"
"文件内容在这里"
- boundary123456 -
我尝试使用set_body()方法: void web :: http :: http_request :: set_body(const concurrency :: streams :: istream& stream,....) 但我无法弄清楚如何在所有上述复杂的体内插入文件流。 set_body()的文档说: "这不能与任何其他设置请求正文的方法一起使用"。我是否需要将文件读入字符串并嵌入其中所说的“#34;文件内容到达此处"”,并使用其他set_body()方法之一,而不是将set_body()方法与文件流一起使用?
谢谢, 奥弗
答案 0 :(得分:0)
FYI
/**
* Share file with room
* More info: https://www.hipchat.com/docs/apiv2/method/share_file_with_room
*
* @param string $id The id or name of the room
* @param array $content Parameters be posted for example:
* array(
* 'name' => 'Example name',
* 'privacy' => 'private',
* )
*
* @return \Psr\Http\Message\ResponseInterface
* @throws
*/
public function sharefileWithRoom($id, $file)
{
$url = $this->baseUrl . "/v2/room/{$id}/share/file";
$headers = array(
'Authorization' => $this->auth->getCredential()
);
$parts[] = [
'headers' => [
'Content-Type' => $file['file_type'] ?: 'application/octet-stream',
],
'name' => 'file',
'contents' => stream_for($file['content']),
'filename' => $file['file_name'] ?: 'untitled',
];
if (! empty($file['message'])) {
$parts[] = [
'headers' => [
'Content-Type' => 'application/json',
],
'name' => 'metadata',
'contents' => json_encode(['message' => $file['message']]),
];
}
return $response = $this->postMultipartRelated($url, [
'headers' => $headers,
'multipart' => $parts,
]);
}
/**
* Make a multipart/related request.
* Unfortunately Guzzle doesn't support multipart/related requests out of the box.
*
* @param $url
* @param $options
* @return \Psr\Http\Message\ResponseInterface
*/
protected function postMultipartRelated($url, $options)
{
$headers = isset($options['headers']) ? $options['headers'] : [];
$body = new MultipartStream($options['multipart']);
$version = isset($options['version']) ? $options['version'] : '1.1';
$request = new Request('POST', $url, $headers, $body, $version);
$changeContentType['set_headers']['Content-Type'] = 'multipart/related; boundary='.$request->getBody()->getBoundary();
$request = modify_request($request, $changeContentType);
$client = new HttpClient;
return $client->send($request);
}