Shiju Samuel
Shiju Samuel

Reputation: 1591

Azure DevOps Rest API - Authentication

I need to build a Powershell Module which needs to distributed. I cannot use personal token for authentication. I have to use an interactive authentication to call azure devOps REST API here

What would be the target APIResourceId in Oauth2 authentication?

Upvotes: 0

Views: 581

Answers (1)

Alex
Alex

Reputation: 18526

The resourceId is always 499b84ac-1321-427f-aa17-267ca6975798.

See e.g. https://github.com/microsoft/azure-devops-auth-samples/blob/master/ManagedClientConsoleAppSample/Program.cs

Upvotes: 1

Related Questions