Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure Devops 203 Non-Authoritative Information with REST API

enter image description here

While calling a REST API for Azure DevOps I am getting an error 203 Non-Authoritative Information. Actually I want to trigger a release pipeline line with the help of REST API.

like image 732
akoliya01 Avatar asked Nov 22 '19 09:11

akoliya01


1 Answers

The 203 error code normally caused by an incorrect PAT format. Looks like you are probably failing authentication because the PAT did not be encoded with base64 correctly.

Ensure the TYPE is Basic Auth, and input the correct PAT format into Password:

enter image description here

Authorization of Postman.

like image 172
Mengdi Liang Avatar answered Sep 24 '22 21:09

Mengdi Liang