我遇到了一些麻烦。我正在尝试使用PowerShell执行POST请求。问题是请求体使用相同的密钥(您可以上传多个图像),多次,因此我无法构建哈希表来发送请求。所以请求者看起来像这样:
name value
image 1.jpg
image 2.jpg
subject this is the subject
message this is a message
具有类似问题(但不是相同的上下文)的用户之前询问过此问题,并作为对使用KeyValuePair类的List的响应。见https://stackoverflow.com/a/5308691/4225082
我似乎无法创造这个。我找到了https://bensonxion.wordpress.com/2012/04/27/using-key-value-pairs-in-powershell-2/
他们使用$testDictionary=New-Object “System.Collections.Generic.Dictionary[[System.String],[System.String]]”
制作字典,但这并不能翻译成一个列表。
我设法使用$r = New-Object "System.Collections.Generic.List[System.Collections.Generic.KeyvaluePair[string,string]]"
创建(我认为需要的)
并使用$s = New-Object “System.Collections.Generic.KeyvaluePair[string,string]"
创建了一个密钥,但我无法设置该密钥的值。
我也尝试过创建一个FormObject,但你也不能多次使用相同的密钥。
最好和/或最简单的方法是什么?
答案 0 :(得分:1)
我将回答我自己的问题。由于这项研究,我设法使用了更好的搜索字词,并找到了具有完全相同问题的人: Does Invoke-WebRequest support arrays as POST form parameters?
我通过将[HttpWebResponse]
更改为[System.Net.HttpWebResponse]
并添加了-WebSession参数来消除错误(?)。我只需要它用于cookie,所以我实现了它,并没有打扰其他的东西,它可能需要一些调整为其他人!
这看起来似乎乍一看,但是对于具有相同键的元素,它创建了一个数组,这搞乱了请求体的顺序。没有正确的订单,网站就不会接受它。
我搞砸了一下,现在我编辑它以利用多维数组。 所以我最终得到了这个(原作者的所有作品!):
function Invoke-WebRequestEdit
{
[CmdletBinding()]
Param
(
[Parameter(Mandatory=$true)][System.Uri] $Uri,
[Parameter(Mandatory=$false)][System.Object] $Body,
[Parameter(Mandatory=$false)][Microsoft.PowerShell.Commands.WebRequestMethod] $Method,
[Parameter(Mandatory=$false)][Microsoft.PowerShell.Commands.WebRequestSession] $WebSession
# Extend as necessary to match the signature of Invoke-WebRequest to fit your needs.
)
Process
{
# If not posting a NameValueCollection, just call the native Invoke-WebRequest.
if ($Body -eq $null -or $body.GetType().BaseType -ne [Array]) {
Invoke-WebRequest @PsBoundParameters
return;
}
$params = "";
$i = 0;
$j = $body.Count;
$first = $true;
foreach ($array in $body){
if (!$first) {
$params += "&";
} else {
$first = $false;
}
$params += [System.Web.HttpUtility]::UrlEncode($array[0]) + "=" + [System.Web.HttpUtility]::UrlEncode($array[1]);
}
$b = [System.Text.Encoding]::UTF8.GetBytes($params);
# Use HttpWebRequest instead of Invoke-WebRequest, because the latter doesn't support arrays in POST params.
$req = [System.Net.HttpWebRequest]::Create($Uri);
$req.Method = "POST";
$req.ContentLength = $params.Length;
$req.ContentType = "application/x-www-form-urlencoded";
$req.CookieContainer = $WebSession.Cookies
$str = $req.GetRequestStream();
$str.Write($b, 0, $b.Length);
$str.Close();
$str.Dispose();
[System.Net.HttpWebResponse] $res = $req.GetResponse();
$str = $res.GetResponseStream();
$rdr = New-Object -TypeName "System.IO.StreamReader" -ArgumentList ($str);
$content = $rdr.ReadToEnd();
$str.Close();
$str.Dispose();
$rdr.Dispose();
# Build a return object that's similar to a Microsoft.PowerShell.Commands.HtmlWebResponseObject
$ret = New-Object -TypeName "System.Object";
$ret | Add-Member -Type NoteProperty -Name "BaseResponse" -Value $res;
$ret | Add-Member -Type NoteProperty -Name "Content" -Value $content;
$ret | Add-Member -Type NoteProperty -Name "StatusCode" -Value ([int] $res.StatusCode);
$ret | Add-Member -Type NoteProperty -Name "StatusDescription" -Value $res.StatusDescription;
return $ret;
}
}
$ body参数如下所示:
$form=@()
$form+= ,@("value1",'somevalue')
$form+=,@("value2", 'somevalue')
$form+=,@("value2",'somevalue')
$form+=,@("value3",'somevalue')
现在一切都很好看。它仍然无法正常工作,但我的原始版本带有独特的键也不再起作用,所以可能还有其它错误。