Back to: ASP.NET Core Tutorials For Beginners and Professionals
How to Download and Install Postman and Fiddler
In this article, I am going to discuss How to Download and Install Postman and Fiddler. Please read our previous article, where we discussed How to Download and Install SSMS on Windows Operating System.
What is Postman?
The Postman is the most popular and most powerful HTTP client for testing restful web services. Postman makes it easy to test the Restful Web APIs and develop and document Restful APIs by allowing the users to put together both simple and complex HTTP requests quickly. The Postman is available as both a Google Chrome in-browser app and Google Chrome Packaged App.
The packaged app version of Postman provides many advanced features, including OAuth 2.0 support and bulk uploading/importing that are not available with the Google Chrome in-browser app version. The in-browser version includes a few features, such as session cookies support, that are not yet available in the packaged app version.
Downloading and Installing Postman:
At some point, we will work with the Web API, i.e., Restful Web Services. We also need one Web API client tool. And for the client tool, we are going to use Postman and Fiddler in this course. In order to install Postman, please visit the below link.
https://www.postman.com/downloads/
Once you click the above link, it will open the webpage below. From the below page, click on the Download the App link to download Postman on your machine. Depending upon your operating system, you can choose either 32-bit or 64-bit. I have installed a 64-bit operating system, so I choose Windows 64-bit as shown in the image below.
Once you download it, then install it. A postman is an API tool. Postman provides a complete and nice interface to work with APIs. While installing, it will ask you to sign in using your Gmail Credentials. Later. I will show you how to use Postman with ASP.NET Core Web API.
Downloading and Installing Fiddler:
The Fiddler is a free debugging proxy tool used to test restful web services. We can use Fiddler to compose and execute different HTTP requests to our Web API and check the HTTP response.
Let’s see how to use Fiddler to send an HTTP request to our local ASP.NET Web API Services and check the response. Download and install Fiddler from the following URL.
https://www.telerik.com/download/fiddler
Once you visit the above website, it will ask you for what purpose you want to use Fiddler, your Email ID, and the country, as shown in the below image. Once you provide this information, click on the Download button as shown in the below image,
Once you download Fiddler, then install it. Later I will show you how to use Fiddler to capture the request and response.
In the next article, I am going to discuss Creating ASP.NET Core Web Application using ASP.NET Core 3.1. Here, in this article, I try to explain How to Download and Install Postman and Fiddler. I hope you enjoy this Download and Install Postman and Fiddler article.