mirror of
https://github.com/davidallendj/gdpm.git
synced 2025-12-20 11:37:00 -07:00
- Added `libhttp` and `librest_api` targets to CMakeLists.txt - Added examples for `libhttp` and `librest_api` in examples directory - Added `cache` and `add` commands - Added documentation for `libhttp` and `librest_api` - Added all available HTTP response codes to REST API - Changed how `bin/compile.sh` works (must supply args to build)
26 lines
No EOL
729 B
Markdown
26 lines
No EOL
729 B
Markdown
# GDPM Rest API Example
|
|
|
|
This is an example showing how to use the REST API designed to query the Godot Asset library in C++. It is built using the `libcurl` library.
|
|
|
|
Here is a snippet making a HTTP get and post request.
|
|
|
|
```c++
|
|
using string = std::string;
|
|
using headers_t = std::unordered_map<string, string>;
|
|
|
|
std::string url = "www.example.com";
|
|
http::response r_get = http::request_get(url)
|
|
if(r_get.response_code == http::response_code::OK){
|
|
// ...do something...
|
|
}
|
|
|
|
http::request_params params;
|
|
params.headers = {
|
|
{"user-agent", "firefox"},
|
|
{"content-type", "application/json"}
|
|
}
|
|
http::response r_post = http::request_post(url, params);
|
|
if(r_post.response_code == http::response_code::OK){
|
|
// ...do something...
|
|
}
|
|
``` |