Yanor.net/
Wiki
Blog
GitHub
Sandbox
開始行:
* ウェブページの取得 - Invoke-WebRequest (wget) [#n1636953]
** GET [#t9654781]
$res = wget http://www.yahoo.co.jp/
$res.Content | Out-File index.html
echo $res.Links.href
** POST [#h89ad6d6]
$params = @{ name = "taro"; age = 10 }
$res = wget -Method Post -Uri http://example.com/ -Body ...
** 注意点 [#zf42e678]
- バイナリファイルなど容量の大きなファイルをダウンロード...
** 参考 [#p596b95d]
http://technet.microsoft.com/library/3e3dac17-3373-4d22-a...
終了行:
* ウェブページの取得 - Invoke-WebRequest (wget) [#n1636953]
** GET [#t9654781]
$res = wget http://www.yahoo.co.jp/
$res.Content | Out-File index.html
echo $res.Links.href
** POST [#h89ad6d6]
$params = @{ name = "taro"; age = 10 }
$res = wget -Method Post -Uri http://example.com/ -Body ...
** 注意点 [#zf42e678]
- バイナリファイルなど容量の大きなファイルをダウンロード...
** 参考 [#p596b95d]
http://technet.microsoft.com/library/3e3dac17-3373-4d22-a...
ページ名: