我有以下脚本用于更新 ADO 发布管道中的 MS Fabric 工作区。这不起作用。此外,身份验证是在服务主体上针对令牌进行的。
$accessToken = "$(accessToken)" # Use the token from pipeline variables
$headers = @{
Authorization = "Bearer $accessToken"
"Content-Type" = "application/json"
}
$apiUrl = "https://api.fabric.microsoft.com/core/git/update-from-git?workspaceId=<workspace-id>&itemId=<item-id>"
$body = @{
gitBranch = "feature"
} | ConvertTo-Json -Depth 10
$response = Invoke-RestMethod -Uri $apiUrl -Method Post -Headers $headers -Body $body
Write-Output $response
错误:
2025-03-05T17:37:34.2927854Z Invoke-RestMethod :
2025-03-05T17:37:34.2928743Z Not Found
2025-03-05T17:37:34.2930059Z Not Found
2025-03-05T17:37:34.2931039Z HTTP Error 404. The requested resource is not found.
2025-03-05T17:37:34.2932857Z At D:\a\_temp\.ps1:16 char:13
2025-03-05T17:37:34.2933909Z + $response = Invoke-RestMethod -Uri $apiUrl -Method Post -Headers $hea ...
2025-03-05T17:37:34.2934961Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2025-03-05T17:37:34.2936330Z + CategoryInfo : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke-RestMethod], WebExc
2025-03-05T17:37:34.2937301Z eption