|
|
|
@ -6,19 +6,11 @@ using namespace std; |
|
|
|
|
|
|
|
|
|
int main() { |
|
|
|
|
|
|
|
|
|
defapi myApi({"GET"}, {"add", "delete", "update"}, {"id", "key", "value"}); |
|
|
|
|
myApi.necessary("add", {"id", "key", "value"}); |
|
|
|
|
myApi.necessary("delete", {"id"}); |
|
|
|
|
myApi.necessary("update", {"id"}); |
|
|
|
|
myApi.necessary("update", {"value"}); |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
|
|
api uf(&myApi, "GET", "delete", {make_pair("id", "4")}, "bay"); |
|
|
|
|
api uf("GET", "/delete", {make_pair("id", "4")}, "bay"); |
|
|
|
|
|
|
|
|
|
} catch (string err) { |
|
|
|
|
cout << err << endl; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// http myHttp(&myApi, "GET /fghfhf HTTP/1.1\r\nBaba");
|
|
|
|
|
// //http myHttp(&myApi, "GET /hello/?id=4&post=99 HTTP/1.1\r\nUser-Agent: Mozilla/4.0 (compatible; MSIE5.01; Windows NT)\r\nHost: www.tutorialspoint.com\r\nAccept-Language: en-us\r\nAccept-Encoding: gzip, deflate\r\nConnection: Keep-Alive\r\n\r\nHELLO WORLD\r\n");
|
|
|
|
@ -32,10 +24,10 @@ int main() { |
|
|
|
|
// cout << mojzahtjev.method << " " << mojzahtjev.url << endl << mojzahtjev.raw;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// http_request myres(&uf);
|
|
|
|
|
// myres.putheader("Content-type", "text/plain");
|
|
|
|
|
http_request myres(&uf); |
|
|
|
|
myres.putheader("Content-type", "text/plain"); |
|
|
|
|
|
|
|
|
|
http_request myres("GET /delete?id=4 HTTP/1.1\r\nContent-type: text/plain\r\n\n\rBAY"); |
|
|
|
|
// http_request myres();
|
|
|
|
|
|
|
|
|
|
// myres.get("HTTP/1.1 200 OK\r\n\r\nnotauth");
|
|
|
|
|
// myres.get("HTTP/1.1 200 OK");
|
|
|
|
@ -43,11 +35,15 @@ int main() { |
|
|
|
|
|
|
|
|
|
// api uf(&myApi, myres);
|
|
|
|
|
|
|
|
|
|
// cout << uf.method << " " << uf.path << " " << uf.body << endl;// << myres.raw;
|
|
|
|
|
// cout << myres.method << " " << myres.url << " " << myres.body << endl;// << myres.raw;
|
|
|
|
|
cout << uf.method << " " << uf.path << " " << uf.body << endl; |
|
|
|
|
cout << myres.method << " " << myres.url << " " << myres.body << endl << myres.raw << endl; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// for(auto i : uf.params)
|
|
|
|
|
// cout << i.first << " " << i.second << endl;
|
|
|
|
|
|
|
|
|
|
} catch (string err) { |
|
|
|
|
cout << err << endl; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|