Skip to content

jaffa4/https_cpp_wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

https_cpp_wrapper

The library allows you to download pages through http/https protocol. You need Ultimate++ Ide and Windows. It consists of one header file only. The original source depended on atl.

Usage:

#include "winhttpclient.h"


WinHttpClient client("https://www.httpssite.com");
client.SetRequireValidSslCertificates(false);
client.SendHttpRequest();
WString httpResponseHeader = client.GetResponseHeader();
String httpResponseContent = client.GetResponseContent().ToString();
LOG(httpResponseContent);

Also, see tttp://www.codeproject.com/Articles/66625/A-Fully-Featured-Windows-HTTP-Wrapper-in-C

Releases

No releases published

Packages

No packages published

Languages