POCO C ++ - NET SSL - 如何POST POST请求 [英] POCO C++ - NET SSL - how to POST HTTPS request

查看:230
本文介绍了POCO C ++ - NET SSL - 如何POST POST请求的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何正确地执行POST到HTTPS服务器并正确嵌入登录数据。下面的代码不返回任何cookie(在Wininet它)。我不知道POCO HTTP库如何处理HTTP重定向?

How to correctly do a POST to HTTPS server and embed the login data correctly. Below code does not return any cookies (in Wininet it does). I wonder how POCO HTTP library handles HTTP redirections?

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;;
    }

};


推荐答案

您正在设置内容类型如下:

You are setting content type like this:

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

这应该是:

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

这篇关于POCO C ++ - NET SSL - 如何POST POST请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆