Azure DevOps Rest Api to get all projects with continuation token
问题 I'm trying to get a list of all our projects in Azure DevOps with PowerShell using the Azure DevOps Rest Api. However, when I run the script it keeps returning 100 projects. When I add the continuation token it loops and returns the SAME 100 projects 4 times. So giving me in total 400 projects. We currently have 385 projects. $Org = "ORGNAME" $personalToken = "MYTOKEN" ################################################### Write-Host "Initialize authentication context" -ForegroundColor Yellow