Reputation:
Can I use the Postman client to send web requests to our on premise TFS endpoint URIs? I have a personal access token. What type of auth should I be using? I keep getting a TF400813: Resource not available for anonymous access. Client authentication required.
I am passing in the token using OAuth 1.0
Upvotes: 7
Views: 5281
Reputation: 31053
Choose Basic Auth, and fill the PAT in Password field. For Username field, you can type anything.
Notice: you have to disable IIS Basic Authentication, then PAT can work. Check: https://learn.microsoft.com/en-us/vsts/integrate/get-started/authentication/iis-basic-auth
Upvotes: 17