About the product
CppRestAPI Tutorial 1
Start the CppRest API tutorial. Let's explain using the UsersAPI as an example. At first Create four SQL statements to be used with the UsersAPI . /CppRestApi/data/sql/get_users.sql /CppRestApi/data/sql/insert_user.sql /CppRestApi/data/sql/update_user.sql /CppRestApi/data/sql/delete_user.sql...
CppRestAPI Tutorial 1
Start the CppRest API tutorial. Let's explain using the UsersAPI as an example. At first Create four SQL statements to be used with the UsersAPI . /CppRestApi/data/sql/get_users.sql /CppRestApi/data/sql/insert_user.sql /CppRestApi/data/sql/update_user.sql /CppRestApi/data/sql/delete_user.sql...
CppRestApi communication
In Routing, http_listener was registered using cpprestsdk. Next, let's look at client and server communication. To send JSON data from the client and obtain the server's response, define a function...
CppRestApi communication
In Routing, http_listener was registered using cpprestsdk. Next, let's look at client and server communication. To send JSON data from the client and obtain the server's response, define a function...
CppRestApi Routing
In CppRestApi, set a RestAPI class that implements the get, put, post, and del methods to api. map<string, RestApi> api; api.insert(api_name, rest_api); For each configured API, add the API's get,...
CppRestApi Routing
In CppRestApi, set a RestAPI class that implements the get, put, post, and del methods to api. map<string, RestApi> api; api.insert(api_name, rest_api); For each configured API, add the API's get,...
CppRestApi permission management
Set the permissions in the auth table. Four are defined by default. 1:visitor 2:user 3: Developer 4:administrator Register auth_id in the user table. Register auth_id in the api table. Set...
CppRestApi permission management
Set the permissions in the auth table. Four are defined by default. 1:visitor 2:user 3: Developer 4:administrator Register auth_id in the user table. Register auth_id in the api table. Set...
CppRestApi Format type
The Format type holds the schema definition as a tuple type, which is specified by the Database class to convert the result of a SQL query in the implementation class...
CppRestApi Format type
The Format type holds the schema definition as a tuple type, which is specified by the Database class to convert the result of a SQL query in the implementation class...
CppRestApi database
The Database class of CppRestApi specifies the Engine (Mysql) and Format (UserFormat, etc.) as template parameters. The query string is set with the setQuery method, and the query is executed...
CppRestApi database
The Database class of CppRestApi specifies the Engine (Mysql) and Format (UserFormat, etc.) as template parameters. The query string is set with the setQuery method, and the query is executed...