I am new to postman and Community. I do not have working solution to share the difference here
I have searched similar topics but nothing return the same.
So, I am getting 401 unauthorized in Postman but Get request works fine in the browser. Tried to google for similar issue but nothing is out there for me.
Here is the screenshot of Ciphers that I have enable
All the information is very helpful upfront for gettings started with your issue, and is much appreciated.
However, I do not believe the issue you are seeing is related to the TLS ciphers. Rather, I feel it may have to do with cookies. Have you logged in on browser before? You may have a cookie there that establishes you a authenticated connection/session with the server.
Postman would likely not have that cookie if you have never established and authenticated connection/session with the server.
What is the 401 Error response body that you receive? That may also shed some more light on whats going on.
Additionally, how are you trying to authenticate with the server in Postman?
No apologies necessary. Thanks for the extra detail. I am not sure what authenticating inherit from parent means. Do you mean you are using authorization defined at the collection level?
Could you elaborate more on the type of authentication the server is expecting? If it’s a username/password combination in an HTML form, you would have to basically replicate that in your request. More information on what the server is expecting will help.
Wireshark could possibly help in the future, although I do not feel we are there yet since we do not know enough about the server and what its expecting from the client.
So given what I see there, Postman doesn’t support Windows Authentication (NTLM) to web services, and therefore you will get an 401 in postman.
I do see there is Basic Authentication available, and postman does support that. You can change it to Basic Auth in sharepoint and send the base64 encoded username:password in the Authorization header and resolve your 401 error.
So unfortunately, I can not change the Authentication on SharePoint end as this practice is touching various other things.
is there something I can do on Postman(client) end to satisfy the requirement?
Also, has it been discussed before to integrate NTLM to web services through Postman? Might be a future request?
Anyways Thank you for your patience and replying promptly. I will continue to explore this awesome tool.