我正在尝试通过Invoke-RestMethod发送一个文件,类似于curl与-F开关的上下文.
卷曲示例
curl -F FileName=@"/path-to-file.name" "https://uri-to-post"
在powerhell中,我尝试过这样的事情:
$uri = "https://uri-to-post" $contentType = "multipart/form-data" $body = @{ "FileName" = Get-Content($filePath) -Raw } Invoke-WebRequest -Uri $uri -Method Post -ContentType $contentType -Body $body }
如果我检查提琴手,我看到身体包含原始的二进制数据,但是我收到200响应,显示没有有效载荷被发送.
我也试图使用-InFile参数,没有运气.
我看过许多使用.net类的例子,但试图用新的Powershell 3命令来保持这个简单.
有没有人有任何指导或经验使这项工作?