Simple HTTP request lib backed by libcurl, inspired by superagent.
Example#include <assert.h> #include <iostream> #include "request.h" int main(){ littlstar::Request *req = new littlstar::Request; littlstar::Response *res = NULL; req->Get("https://littlstar.com/api/v1/videos"); req->Query("foo", "bar"); req->Set("X-ApiKey", "myapikey"); req->Accept("application/json"); res = req->End(); assert(res->ok); std::cout << res->data << std::endl; delete req; delete res; return 0; }License
MIT
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4