1. ホーム
  2. powershell

[解決済み】Invoke-WebRequest、パラメータ付きPOST

2022-04-05 13:53:47

質問

あるURIにPOSTしようとし、パラメータとして username=me

Invoke-WebRequest -Uri http://example.com/foobar -Method POST

POSTメソッドを使用してパラメータを渡すにはどうすればよいですか?

どのように解決するのですか?

パラメータをハッシュテーブルに入れ、このように渡します。

$postParams = @{username='me';moredata='qwerty'}
Invoke-WebRequest -Uri http://example.com/foobar -Method POST -Body $postParams