I have a .NET application that uses Sharepoint. In the application code, I am using ICredentials to specify a username and password which get assigned to the Credentials property of a ClientContext object.
This works fine, however, I would like to be able to hit Sharepoint from a REST tool like postman in order to test and debug requests more easily. I don't know how to specify the credentials in this case. I tried sending a basic auth header, but it didn't work.
Frank