将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,忽略标题?或者是否有一种干净的方式从这些数字中获取内容?
答案 0 :(得分:42)
您可以将Invoke-WebRequest
替换为Invoke-RestMethod
,自动将json响应转换为psobject
,以便您可以使用:
$response = Invoke-RestMethod -Uri "https://yadayada:8080/bla"
$response.flag
答案 1 :(得分:0)
如果您需要在Invoke-WebRequest
上使用Invoke-RestMethod
,则可以先将其转换为字符串,然后将其转换为对象
$response = Invoke-WebRequest -Uri "https://yadayada:8080/bla"
$jsonObj = ConvertFrom-Json $([String]::new($response.Content))
答案 2 :(得分:0)
这种方式:
<BrowserRouter>
答案 3 :(得分:0)
如果您有包装器,请在路径中包含名称。
$response=Invoke-RestMethod -Method GET -ContentType "application/json" -Headers $headers -Uri $Url
foreach($element in $response.baskets.fixed_asset_rents)
{
Write-Host $element
}