$headers = @{"Content-Type" = "application/json"} $body = @" {"text":"昨天我给她准备了生日惊喜,她很开心,说这是她过得最难忘的一个生日"} "@ $response = Invoke-RestMethod -Uri "http://localhost:3000/analyze" -Method Post -Headers $headers -Body $body $response | ConvertTo-Json -Depth 10