自己署名証明書を使用するサーバーにGET要求を送信する場合:
add-type @"
using System.Net;
using System.Security.Cryptography.X509Certificates;
public class TrustAllCertsPolicy : ICertificatePolicy {
public bool CheckValidationResult(
ServicePoint srvPoint, X509Certificate certificate,
WebRequest request, int certificateProblem) {
return true;
}
}
"@
[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy
$RESPONSE=Invoke-WebRequest -Uri https://yadayada:8080/bla -Method GET
echo $RESPONSE
私は次の応答を得ています:
StatusCode : 200
StatusDescription : OK
Content : {123, 10, 108, 111...}
RawContent : HTTP/1.1 200 OK
Content-Length: 21
Date: Sat, 11 Jun 2016 10:11:03 GMT
{
flag:false
}
Headers : {[Content-Length, 21], [Date, Sat, 11 Jun 2016 10:11:03 GMT]}
RawContentLength : 21
コンテンツにはいくつかの有線番号が含まれているので、RawContentの後に行きました。ヘッダーを無視して、内部のJSONをどのように解析しますか?またはそれらの番号からコンテンツを取得するためのクリーンな方法はありますか?
Invoke-WebRequest
をjson応答をpsobject
に自動変換するInvoke-RestMethod
に置き換えることができます:
$response = Invoke-RestMethod -Uri "https://yadayada:8080/bla"
$response.flag
Invoke-WebRequest
over Invoke-RestMethod
を使用する必要がある場合は、最初に文字列に変換してオブジェクトに変換できます。
$response = Invoke-WebRequest -Uri "https://yadayada:8080/bla"
$jsonObj = ConvertFrom-Json $([String]::new($response.Content))