我正在使用 Invoke-RestMethod 访问一些 JSON 数据,我想遍历它,为每个 id 执行另一个 Invoke-RestMethod 并为每个调用使用 apiHost 值。数据的简化示例如下:
"items": [
{
"id": "1234",
"apiHost": "thishost.com"
},
{
"id": "5678",
"apiHost": "anotherhost.com"
},
这是迄今为止我拥有的功能。Write-Host 行(用于解决此问题)显示每个 id 的所有 apiHost 值,并解释下一行不起作用的原因。如何通过 id 每次迭代引用相关的 apiHost 以便下一行可以工作?
function Get-ID {$headers = @{
'Authorization' = $auth_string
'Org' = $organization
}
$response = Invoke-RestMethod -Method Get -Headers $headers -Uri $a_url
foreach($id in $response.items.id) {
$itemheaders = @{
'Authorization' = $auth_string
'Dept-ID' = $id
}
write-host $response.items.apiHost
$apihost = $response.items.apiHost + '/here/there'
$outfile = 'c:\temp\' + $id + '_details.json'
$response = Invoke-RestMethod -Method Get -Headers $itemheaders -Uri $apihost -outfile $outfile
}
}
这篇文章似乎表明我正在做的事情是正确的,但我认为我遗漏了一些明显的东西。