PowerShell チュートリアル curl (Invoke-WebRequest) の使用方法について
前置き
PowerShellは、第一に、オペレーティングシステム、特にファイルシステムと対話し、アプリケーションを起動し、さらに操作するためのコマンド群を定義したシェルである。第二に、PowerShellは、いくつかのコマンドをファイルにまとめてファイルレベルの再利用を可能にし、これはスクリプトの性質である。第三に、PowerShellは.Net型やCOMオブジェクトを利用して、さまざまなシステムと簡単に対話し、複雑でさまざまな自動操作を実行することが可能である。
ウィンドウズ・インターフェースに慣れてしまうと、なかなかコマンドラインに移行できないし、コマンドラインから始まったgitも、いろいろなインターフェースツールが湧いてきていますが、コーダーであれば、インターフェースよりもコマンドラインの方が本当はずっと速いんですよ。
の状況です。
バグ解析の依頼を受け、httpにアクセスする必要がありました。そのマシンは製品に属しており、postmanのインストールが許可されていません。私は、ビルトインPowerShellでcurlコマンドを見つけました。半日ほど試してみましたが、コマンドはいつも間違っていました。グーグルで調べてみると、このcurlは偽者で、Invoke-WebRequestのエイリアスに過ぎないことがわかりました。
参照
.
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. 構文Syntax
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 リクエストの取得
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
コンテンツ内容が切り捨てられていることがわかります。完全なコンテンツを取得するには
ps> curl https://www.google.com | Select -ExpandProperty Content
3.2 ヘッダーの追加
-Headers @{"accept"="application/json"}
3.3 メソッドの指定
-Method Get
3.4 取得したコンテンツをファイルに出力する
-OutFile 'c:\Users\rmiao\temp\content.txt'
3.5 フォーム送信
For example:
$R = Invoke-WebRequest http://website.com/login.aspx
$R.Forms[0].Name = "MyName"
Password = "MyPassword"
Invoke-RestMethod http://website.com/service.aspx -Body $R
または
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 ログインの例
#Send a login request, declare a sessionVariable with the parameter fb, and save the result in $R
#This variable fb is the set of header.cookie etc
PS C:\Users\rmiao> $R=curl http://www.facebook.com/login.php -SessionVariable fb
PS C:\Users\rmiao> $FB
Headers : {}
Cookies : System.
UseDefaultCredentials : False
Credentials :
Certificates :
UserAgent : Mozilla/5.0 (Windows NT; Windows NT 6.3; en-US) WindowsPowerShell/4.0
Proxy :
MaximumRedirection : -1
# Assign the first form attribute in the response to the variable 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
# View 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, ]...}
#ViewProperties
$Form.fields
#Set account password
$Form.Fields["email"] = "[email protected]"
$Form.Fields["pass"] = "P@ssw0rd"
#Send request and save result as $R
$R=Invoke-WebRequest -Uri ("https://www.facebook.com" + $Form.Action) -WebSession $FB -Method POST -Body $Form.Fields
# View results
PS C:\Users\rmiao> $R.StatusDescription
OK
curlほど主流ではありませんが、httpアクセスでも選択肢になりえます。
要約すると
以上、この記事の内容はすべてです、私はこの記事の内容はあなたの勉強や仕事にいくつかの助けをもたらすことができることを願って、あなたが質問を持っている場合は、交換するメッセージを残すことができます、スクリプトハウスへのあなたのサポートをありがとうございました。
参考資料
関連
-
UbuntuシステムでのPowerShellベースの利用を解説
-
PowershellによるWindowsログのクエリ方法
-
スクリプトの記述と実行のためのPowershellの実装
-
ADユーザーのパスワード属性を一括で変更するPowerShellコード
-
PowerShell文字列オブジェクトのメソッド概要
-
Powershellディレクトリフォルダ管理権限継承・割り当て方法
-
PowerShell DSC コンポーネント xExchange をリリースしました。
-
システム上の停止可能な全サービスを取得するPowershell
-
PowerShellでNICの状態と対応する電源設定を確認する
-
PowerShellでWAVオーディオファイルを再生する
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
デジタル署名のないスクリプトはPowerShellで実行されない
-
PowerShell 4.0の新コマンドを簡単に紹介します。
-
PowerShellの基本的な使い方のチュートリアル
-
PowerShellによるファイル名変更のバッチ処理例
-
PowerShellのContinue文の使用例
-
サーバーの接続状態を監視するためのPowershellの実装
-
PowerShelプログラム実行後、スクリプト自体を削除する方法
-
PowerShellでPrintManagementを使用してプリンターを管理する例
-
ファイルリソースを含むPowershellスクリプトの例
-
Powershellで隠しファイルを表示する方法