使用 REST 与 PowerShell 对象来获取和发布许多项目

获取 REST 数据并存储在 PowerShell 对象中:

$Users = Invoke-RestMethod -Uri "http://jsonplaceholder.typicode.com/users"

修改数据中的许多项:

$Users[0].name = "John Smith"
$Users[0].email = "John.Smith@example.com"
$Users[1].name = "Jane Smith"
$Users[1].email = "Jane.Smith@example.com"

POST 所有 REST 数据:

$Json = $Users | ConvertTo-Json
Invoke-RestMethod -Method Post -Uri "http://jsonplaceholder.typicode.com/users" -Body $Json -ContentType 'application/json'