PowerShellでcurl(Invoke-WebRequest)を使用する

5528 ワード

前言
Windowsのインタフェースモードに慣れるとコマンドラインに移行しにくく、コマンドラインで発家するgitにも様々なインタフェースtoolが現れます.しかし、コマンドラインは本当にインタフェースよりずっと速いです.もしあなたが私たちだったら.
Situation:需要分析バグを受け取り、httpにアクセスする必要があります.その機械はproductに属し、postmanを装着することは許されない.私は手動でコマンドラインで要求するしかありません.内蔵のPowerShellにcurlコマンドがあることを発見.歓喜して半日試して、いつも命令が間違っていて、googleはこのcurlが偽名で代わったことを発見して、ただ1つのInvoke-WebRequestのaliasです.参考にする.
PS> Get-Alias -Definition Invoke-WebRequest | Format-Table -AutoSize

CommandType Name                      Version Source
----------- ----                      ------- ------
Alias       curl -> Invoke-WebRequest
Alias       iwr -> Invoke-WebRequest
Alias       wget -> Invoke-WebRequest

Invoke-WebRequest簡単な使い方
1.用途
Gets content from a web page on the Internet.
http webリクエストアクセスコンテンツの取得
2.構文シンタックス
Parameter Set: Default
Invoke-WebRequest [-Uri] <Uri> [-Body <Object> ] [-Certificate <X509Certificate> ] [-CertificateThumbprint <String> ] [-ContentType <String> ] [-Credential <PSCredential> ] [-DisableKeepAlive] [-Headers <IDictionary> ] [-InFile <String> ] [-MaximumRedirection <Int32> ] [-Method <WebRequestMethod> {Default | Get | Head | Post | Put | Delete | Trace | Options | Merge | Patch} ] [-OutFile <String> ] [-PassThru] [-Proxy <Uri> ] [-ProxyCredential <PSCredential> ] [-ProxyUseDefaultCredentials] [-SessionVariable <String> ] [-TimeoutSec <Int32> ] [-TransferEncoding <String> {chunked | compress | deflate | gzip | identity} ] [-UseBasicParsing] [-UseDefaultCredentials] [-UserAgent <String> ] [-WebSession <WebRequestSession> ] [ <CommonParameters>]

3.簡単な使い方
3.1 Getリクエスト
PS C:\Users\rmiao> curl -URi https://www.google.com

StatusCode        : 200
StatusDescription : OK
Content           : <!doctype html><html itemscope="" itemtype="http://schema.org/WebPage" lang="en"><head><meta content="Search the world's information, including webpages, images, videos and more. Google has many speci..."
RawContent        : HTTP/1.1 200 OK
                    X-XSS-Protection: 1; mode=block
                    X-Frame-Options: SAMEORIGIN
                    Alt-Svc: quic=":443"; ma=2592000; v="36,35,34,33,32"
                    Vary: Accept-Encoding
                    Transfer-Encoding: chunked

コンテンツの内容が遮断されていることがわかります.完全なcontentを取得するには、次の手順に従います.
ps> curl https://www.google.com | Select -ExpandProperty Content

3.2ヘッダーの追加
-Headers @{"accept"="application/json"}

3.3 Methodの指定
-Method Get

3.4取得したcontentをファイルに出力する
-OutFile 'c:\Users\rmiao\temp\content.txt'

3.5フォームの提出
For example:
$R = Invoke-WebRequest http://website.com/login.aspx 
$R.Forms[0].Name = "MyName" 
$R.Forms[0].Password = "MyPassword" 
Invoke-RestMethod http://website.com/service.aspx -Body $R

or
Invoke-RestMethod http://website.com/service.aspx -Body $R.Forms[0]

3.6コンテンツのフィルタリング
PS C:\Users\rmiao> $R = Invoke-WebRequest -URI http://www.bing.com?q=how+many+feet+in+a+mile
PS C:\Users\rmiao> $R.AllElements | where {$_.innerhtml -like "*=*"} | Sort { $_.InnerHtml.Length } | Select InnerText -
First 5

innerText
---------
=

1
Next
=


3.7ログイン例
#        ,    sessionVariable    fb,       $R
#    FB  header.cookie   
PS C:\Users\rmiao> $R=curl http://www.facebook.com/login.php -SessionVariable fb
PS C:\Users\rmiao> $FB


Headers               : {}
Cookies               : System.Net.CookieContainer
UseDefaultCredentials : False
Credentials           :
Certificates          :
UserAgent             : Mozilla/5.0 (Windows NT; Windows NT 6.3; en-US) WindowsPowerShell/4.0
Proxy                 :
MaximumRedirection    : -1


# response         form       Form
PS C:\Users\rmiao> $Form=$R.Forms[0]
PS C:\Users\rmiao> $Form.fields

Key                                                         Value
---                                                         -----
lsd                                                         AVqQqrLW
display
enable_profile_selector
isprivate
legacy_return                                               0
profile_selector_ids
return_session
skip_api_login
signed_next
trynum                                                      1
u_0_0
u_0_1
lgnrnd                                                      214945_qGeg
lgnjs                                                       n
email
pass
persistent
default_persistent                                          1



#   form
PS C:\Users\rmiao> $Form | Format-List


Id     : login_form
Method : post
Action : /login.php?login_attempt=1&lwv=100
Fields : {[lsd, AVqQqrLW], [display, ], [enable_profile_selector, ], [isprivate, ]...}


#    
$Form.fields

#      
$Form.Fields["email"] = "[email protected]"
$Form.Fields["pass"] = "P@ssw0rd"

#          $R
$R=Invoke-WebRequest -Uri ("https://www.facebook.com" + $Form.Action) -WebSession $FB -Method POST -Body $Form.Fields

#    
PS C:\Users\rmiao> $R.StatusDescription
OK

curlほど主流ではありませんが、httpアクセスの選択肢になります.
リファレンス
https://technet.microsoft.com/en-us/library/hh849901.aspx