は、私は基本的なauthentaticationカールを使用してRESTのAPIでの作業を持っています。 このスクリプトは、RESTコードの認証チェックを無効にすると正常に動作します。PowerShellのHTTP POSTをREST API基本認証
curlに似たPOSTリクエストで資格情報を渡す、または後続のスクリプトを修正するためにできることは何ですか?
これに関するいくつかのガイダンスは本当にうれしいです。ありがとう。ここで
は私のPowerShellスクリプトです:
function Execute-HTTPPostCommand() {
param(
[string] $target = $null
)
$username = "user"
$password = "pass"
$webRequest = [System.Net.WebRequest]::Create($target)
$webRequest.ContentType = "text/html"
$PostStr = [System.Text.Encoding]::UTF8.GetBytes($Post)
$webrequest.ContentLength = $PostStr.Length
$webRequest.ServicePoint.Expect100Continue = $false
$webRequest.Credentials = New-Object System.Net.NetworkCredential -ArgumentList $username, $password
$webRequest.PreAuthenticate = $true
$webRequest.Method = "POST"
$requestStream = $webRequest.GetRequestStream()
$requestStream.Write($PostStr, 0,$PostStr.length)
v$requestStream.Close()
[System.Net.WebResponse] $resp = $webRequest.GetResponse();
$rs = $resp.GetResponseStream();
[System.IO.StreamReader] $sr = New-Object System.IO.StreamReader -argumentList $rs;
[string] $results = $sr.ReadToEnd();
return $results;
}
$post = "volume=6001F930010310000195000200000000&arrayendpoint=2000001F930010A4&hostendpoint=100000051ED4469C&lun=2"
$URL = "http://example.com/test/"
Execute-HTTPPostCommand $URL
をtroubleshoot-するために、システムの出力に、フォームの内容が、取得したページなどを表示するための変数は、ありがとう!これは私のためにやった。 –
http://www.base64encode.org/を使用して、UTF-8 Base64文字列を取得できます。 – SeriousM