Skip to content

Instantly share code, notes, and snippets.

@Rapptz
Created February 26, 2015 11:46
Show Gist options
  • Save Rapptz/9169bea24ac1b3963edf to your computer and use it in GitHub Desktop.
Save Rapptz/9169bea24ac1b3963edf to your computer and use it in GitHub Desktop.
#include <requests/request.hpp>
#include <iostream>
int main() {
auto r = requests::get("http://www.example.com");
std::cout << r.status_code << '\n';
std::cout << r.text << '\n';
std::cout << r.url << '\n';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment