Skip to content

Latest commit

 

History

History
21 lines (10 loc) · 990 Bytes

File metadata and controls

21 lines (10 loc) · 990 Bytes

We can test our application using Postman. Paste the main path on a new Postman tab, for instance:

http://127.0.0.1:5000/user

Our table is empty for the moment, so we will select the POST method to add new data. We can submit JSON requests by clicking on the "Body" tab and selecting "raw". For example, submit:

{ "name" : "elena", "age" : 26, "phone" : "555123", "email" : "elena@devon.com" }

Our new user should now be accessible from the database under "id" number 1. Check this by submitting a GET request to the following path:

http://127.0.0.1:5000/user/1

We will now edit our entry by sending a PUT request. Submit the following body to http://127.0.0.1:5000/user/1:

{ "phone" : "777123" }

Now send another GET request and check whether the column was properly updated.

Lastly, you can check the DELETE method by sending this request to http://127.0.0.1:5000/user/1. Then send a GET request to http://127.0.0.1:5000/user. The application returns "User list is empty".