Nov 09 2023
11:02 PM
- last edited on
Mar 05 2024
05:00 PM
by
TechCommunityAP
Nov 09 2023
11:02 PM
- last edited on
Mar 05 2024
05:00 PM
by
TechCommunityAP
Below is my code:
$TenantId = ""
$ClientId = " " # aka Application ID
$ClientSecret = " " # aka key
$Resource = "https://app.vssps.visualstudio.com"
$RequestAccessTokenUri = "https://login.microsoftonline.com/<<tenantid>>/oauth2/token"
$Body = "grant_type=client_credentials&client_id=$ClientId&client_secret=$ClientSecret&resource=$Resource"
$token = Invoke-RestMethod -Method Post -Uri $RequestAccessTokenUri -Body $Body -ContentType 'application/x-www-form-urlencoded'
$bearer_token= $token.access_token
$headers = @{
Accept = "application/json"
Authorization = "Bearer $bearer_token"
}
$url='https://dev.azure.com/<<Org>>/<<Project>>/_apis/pipelines/17/runs?api-version=7.1-preview.1'
$x=Invoke-RestMethod -Uri $url -Method Get -Headers $headers;
$x
But I am getting the below error :
Microsoft Internet Explorer's Enhanced Security Configuration is currently enabled on your environment. This enhanced level of security prevents our web integration experiences from displaying or performing correctly. To continue with your operation please disable this configuration or contact your administrator.
Note : the app has project admin access
Nov 10 2023 05:50 PM