powershellでcurlのようなことを実行する方法をご紹介します。
以下のように「Invoke-RestMethod」を使用します。
1 |
Invoke-RestMethod -Uri "http://hogehoge.com" -Method xxxxx |
以下のような内容をPostする場合、「-Body」の引数で指定します。
1 2 |
id:kamo pass:torapass |
以下のようになります。
1 |
Invoke-RestMethod -Uri "http://hogehoge.com" -Method POST -Body "id=kamo&pass=torapass" |