- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PowerShell/ネットワーク/ウェブページの取得 - Invoke-WebRequest (wget) へ行く。
- 1 (2014-11-28 (金) 10:32:21)
ウェブページの取得 - Invoke-WebRequest (wget)
GET
$res = wget http://www.yahoo.co.jp/ $res.Content | Out-File index.html echo $res.Links.href
POST
$params = @{ name = "taro"; age = 10 } $res = wget -Method Post -Uri http://example.com/ -Body $params
参考
http://technet.microsoft.com/library/3e3dac17-3373-4d22-a54a-9d56a4a556c3(v=wps.630).aspx