将 REST 与 PowerShell 对象一起使用以获取和放置单个数据

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

$Post = Invoke-RestMethod -Uri "http://jsonplaceholder.typicode.com/posts/1"

修改你的数据:

$Post.title = "New Title"

将 REST 数据丢回

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