RESTful API
What is RESTful API?
HTTP method
Creating a Database
1. API: GET/list

2. API: GET/getUser/:username

3. API: POST addUser/:username
body: { "password": "", "name": "" }
4. API: PUT updateUser/:username
body: { "password": "", "name": "" }
5. API: DELETE deleteUser/:username
Last updated