This is a demo application for learning "How to build your own "Cloud MicroServices". We design our own API in this demo.
- Python
- Flask
- MongoDB
- SQLLite3
- Ajax
- REACT
- Javascript
- HTML5
- CSS
GET /api/v1/info
Return all the info of the API V1 like build-date-time, methods supported, version
GET /api/v1/users
Return all the users stores in the users table in the database. For example name,email,username,password
GET /api/v1/users/
Return a specific user of having "ID" as given instead of displaying all.
POST /api/v1/users
Insert a new user in the users table.
DELETE /api/v1/users
Delete a user with a specific id
PUT /api/v1/users/
Update a specific users already present in the users table
GET /api/v2/info
Return all the info of the API V1 like build-date-time, methods supported, version
GET /api/v2/tweets
Returns all the tweets made by different users
GET /api/v2/tweets/
Return a specific tweet shared by a user
GET /api/v2/tweets/
Return all the tweets shared by a specific user
POST /api/v2/tweets
Insert a new tweet in the tweets table