How to test POST requests in "Postman" in places where session authentication is required?

1

Postman is the application built into the Chrome browser I use to test my POST requests.

link

But the area I want to access is only accessible through login and password. However, since this is not a REST API or anything similar, I have not implemented any of the authentication types that are supported by the application.

  • No Auth
  • Basic Auth
  • Digest Auth
  • OAuth 1.0
  • OAuth 2.0 Hawk
  • Authentication AWS Signature

How can I test POST requests without necessarily having to disable my login protected area? Is there a way to do this in POSTMAN or is there any better alternative?

    
asked by anonymous 29.05.2017 / 23:49

1 answer

-1

Try this link

Or, if you are using token ... copy the token of your code and add it to the header: Authorization: Bearer Token_String (key: "Authorization"; value: "Bearer Token_String") without quotes ... just to indicate the string

    
30.05.2017 / 05:29