我正在使用 c++ 和 Casablanca 将 Dropbox 功能添加到我们的软件中。
我可以使用 OAuth 2 登录、获取元数据、打开文件以及使用 files_put 成功保存文件。但是,我不知道如何使用 /files (POST) 保存文件。
我正在使用与此类似的代码:(即我已经删除了一些函数来显示我最终得到的硬编码字符串)
{
using concurrency::streams::file_stream;
using concurrency::streams::basic_istream;
utility::string_t strURI = L"https://api-content.dropbox.com/1/files/dropbox/";
uri url(uri::encode_uri(strURI));
utility::string_t sb = url.to_string();
sb += L"?oauth_consumer_key=" + consumerKey + L"&";
sb += L"oauth_nonce=" + nonce + L"&";
sb += L"oauth_timestamp=" + timestamp + L"&";
sb += L"oauth_version=2.0";
sb += L"&access_token=" + accessToken;
sb += L"&file=" + strFilename; // I've tried with and without this line
return file_stream<unsigned char>::open_istream(strPath)
.then([sb, url, &bRet](task<basic_istream<unsigned char>> previousTask)
{
try
{
auto fileStream = previousTask.get();
//get the content length, used to set the Content-Length property
fileStream.seek(0, std::ios::end);
auto length = static_cast<size_t>(fileStream.tell());
fileStream.seek(0, 0);
// Make HTTP request with the file stream as the body.
http_request req;
http_client client(sb);
req.set_body(fileStream);
req.set_method(methods::POST);
return client.request(req)
.then([fileStream, &bRet](task<http_response> previousTask)
{
// Process response
}
}
};
}
我收到了错误的请求响应。我认为问题是我没有正确地给它文件名参数,但我不知道它应该去哪里。或者,也许我完全错过了其他东西。
谁能帮我澄清一下?