By the end of this lesson, you should be able to...
Vid 1 - Using Postman to test Flask routes
Vid 1 - Using Postman to test Flask routes
<aside> 🤔 What tools can we use to experiment with API's and confirm they work as expected from the user end?
</aside>
Once a API route has been created, it should always be tested in a development environment before rolling out to production. Many tools and techniques exist to test an API quickly—but in this class we will be using a tool called Postman.
Similar to an internet browser, Postman allows developers to make requests and recieve respones. Postman provides additional tools on top of the traditional intenet browser such as the ability to quickly shape the method of request (GET
, POST
, etc.), the query parameters of the request, and request tracing for easier debugging.