Skip to content

Instantly share code, notes, and snippets.

@MordechaiMaman
MordechaiMaman / HttpRequest.cpp
Created March 15, 2016 21:48
http request module for windows (using wininet.lib)
#include "HttpRequest.h"
#include <sstream>
HTTP::HttpRequest::HttpRequest(const std::wstring& user_agent)
{
_connection = InternetOpenW(user_agent.c_str(),
INTERNET_OPEN_TYPE_DIRECT,
NULL, NULL, 0);
if (_connection == NULL)