6

如果我有curl如下命令:

curl <url> \
  -H 'Content-Type: application/json' \
  -H 'API-Key: <key>' \
  --data-binary '{"blah":"blah {\n  blah2(accountId: id, integrations: {int1: {Vms: [{Id: id2, resourceGroups: [\"test1\", \"test2\", \"test3\"]}]}}) {\n    integrations {\n      id\n      name\n      service {\n        id\n        slug\n      }\n    }\n  }\n}\n", "variables":""}'

--data-binaryPowershell中的等价物是什么?一些答案说只是 running curl.exe,其他人提到改变内容类型。不过,这确实可以作为 shell 脚本工作。只是想知道是否可以将其转换为Invoke-WebRequest在 Powershell 中使用。

4

1 回答 1

-3

-body 参数与有效载荷一起使用

于 2018-10-02T21:03:48.323 回答