C++ POCO C++;-NET SSL-如何发布HTTPS请求

C++ POCO C++;-NET SSL-如何发布HTTPS请求,c++,http,post,https,poco-libraries,C++,Http,Post,Https,Poco Libraries,如何正确地发布到HTTPS服务器并正确地嵌入登录数据。下面的代码不返回任何cookie(在Wininet中是这样)。我想知道POCO HTTP库如何处理HTTP重定向 MyApp() { try { const Poco::URI uri( "https://localhost.com" ); const Poco::Net::Context::Ptr context( new Poco::Net::Context( Poco::Net::Cont

如何正确地发布到HTTPS服务器并正确地嵌入登录数据。下面的代码不返回任何cookie(在Wininet中是这样)。我想知道POCO HTTP库如何处理HTTP重定向

MyApp()
{
    try
    {
        const Poco::URI uri( "https://localhost.com" );
        const Poco::Net::Context::Ptr context( new Poco::Net::Context( Poco::Net::Context::CLIENT_USE, "", "", "rootcert.pem" ) );
        Poco::Net::HTTPSClientSession session(uri.getHost(), uri.getPort(), context );
        Poco::Net::HTTPRequest req(Poco::Net::HTTPRequest::HTTP_POST, "/login.php" );
        req.setContentType("Content-Type: application/x-www-form-urlencoded\r\n");
        req.setKeepAlive(true);

        std::string reqBody("username=???&password=???&action_login=Log+In\r\n\r\n");
        req.setContentLength( reqBody.length() );

        //Poco::Net::HTTPBasicCredentials cred("???", "???");
        //cred.authenticate(req);
        session.sendRequest(req) << reqBody;
        Poco::Net::HTTPResponse res;
        std::istream& rs = session.receiveResponse(res);
        std::string resp;

        std::vector<Poco::Net::HTTPCookie> cookies;
        res.getCookies( cookies );
    }
    catch( const Poco::Net::SSLException& e )
    {
        std::cerr << e.what() << ": " << e.message() << std::endl;
    }
    catch( const std::exception& e )
    {
        std::cerr << e.what() << std::endl;;
    }

};
MyApp()
{
尝试
{
常量Poco::URI(“https://localhost.com" );
const Poco::Net::Context::Ptr Context(新的Poco::Net::Context(Poco::Net::Context::CLIENT_USE,“,”,“rootcert.pem”);
Poco::Net::HTTPSClientSession会话(uri.getHost(),uri.getPort(),上下文);
Poco::Net::HTTPRequest请求(Poco::Net::HTTPRequest::HTTP_POST,“/login.php”);
req.setContentType(“内容类型:application/x-www-form-urlencoded\r\n”);
请求setKeepAlive(真);
std::string reqBody(“用户名=???&密码=???&操作\登录=登录+登录\r\n\r\n”);
req.setContentLength(reqBody.length());
//Poco::Net::HttpBasicCred(“?”,“?”);
//信用认证(req);

session.sendRequest(req)您正在设置如下内容类型:

req.setContentType("Content-Type: application/x-www-form-urlencoded\r\n");
应该是:

req.setContentType("application/x-www-form-urlencoded\r\n");