Open In App

How to configure Digest Authentication in Postman?

Last Updated : 06 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

Postman is an important tool in API Development. Postman allows us to test, modify the APIs, and also build new APIs. There is Digest Authentication in Postman which is an authentication method used in the HTTP communication. In this article, we will see how we can configure Digest Authentication in Postman

What is Digest Authentication in Postman?

In Postman, Digest Authentication is an advanced authentication method as compared to Basic Authentication. It is used in HTTP to secure the communication between the client and server. This authentication uses the hash of the password and other details rather than passing the actual password over the network. Using this Authentication method, we can make the communication more secure.

Steps to Configure Digest Authentication in Postman

Step 1: Open the Postman application and create a new request.

1

Step 2: Set the request method to GET and enter the URL: https://httpbin.org/digest-auth/auth/user/pass.

2

Step 3: Now, go to the “Authorization” Tab.

3

Step 4: We need to select “Digest Auth” from the Dropdown List.

4

Step 5: Now, we need to enter the username and password. We have set username – user, password – pass.

5

Step 6: Now, click on the Send button in Postman. The server will respond with the protected resource response message.

Output:

Output


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads