使用google drive api的Poco HTTPSClientSession

时间:2018-01-10 02:59:02

标签: c++ c++11 google-drive-api poco poco-libraries

要让我的桌面应用访问我的谷歌硬盘,我使用Poco进行身份验证和查询。在请求访问令牌时,我遇到了Poco::Net::HTTPSClientSession的问题。我的代码如下。

namespace net = Poco::Net;
net::Context::Ptr ctx =
    new net::Context(net::Context::CLIENT_USE, "", net::Context::VerificationMode::VERIFY_NONE);
net::HTTPSClientSession client("accounts.google.com", net::HTTPSClientSession::HTTPS_PORT, ctx);

net::HTTPRequest req(net::HTTPRequest::HTTP_POST, "/o/oauth2/token", net::HTTPMessage::HTTP_1_1);
net::HTMLForm    form;
form.add("code", accessCode);
form.add("client_secret", client_secret);
form.add("client_id", client_id);
form.add("grant_type", "authorization_code");
form.add("redirect_uri", redirect_uri);
form.prepareSubmit(req);

// req.setChunkedTransferEncoding(true);

form.write(std::cout);
std::cout << std::endl;
client.sendRequest(req);

req.write(std::cout);
std::cout << "Method: " << req.getMethod() << std::endl;
net::HTTPResponse resp;
auto&&            is = client.receiveResponse(resp);
std::copy(
    std::istream_iterator<char>(is), std::istream_iterator<char>(), std::ostream_iterator<char>(std::cout));
std::cout << std::endl;

我使用上面的代码获得Timeout异常。如果我打开分块传输编码,我会从谷歌

收到错误
  

&#34;缺少必需参数:grant_type&#34;

我的代码中的传输编码有些不正确的地方,我无法弄清楚。我错过了什么?

编辑:Postman中的相同请求工作正常(有或没有分块传输编码)。

谢谢, 苏里亚

1 个答案:

答案 0 :(得分:0)

回答我自己的问题。

我没有将表单数据写入提出问题的请求正文中。改变了这样的代码

auto&& strm = client.sendRequest(req);
form.write(strm);

现在可行。