我不是Linux大师,使用curl对我来说太复杂了。所以我找到了 httpie 并尝试调用我自己的一个用 C# 编写的 REST 服务器来反对 .NETCore 2 并在 CentOS 7 下的 Docker 上运行。
我在 Windows 上有一个有效的 Powershell 脚本,并尝试使用httpie
将其移植到 bash 脚本,不幸的是没有运气。
API 在服务器上生成一个文件,并将其作为octet-stream
返回。服务器上的标头定义如下:
Options = new Dictionary<string, string>
{
{"Content-Type", "application/octet-stream"},
{"X-Api-DocType", filetype},
{"X-Api-DocLength", responseStream.Length.ToString()}
};
我的POWERSHELL脚本(工作正常(如下所示:
$request = @{
Namespace = "MyApplication.MessagingApi"
Version = "current"
DataDefinitionLanguage = "Csharp"
MakePartial = $false
MakeVirtual = $false
}
$docPath = "D:ProjectsAccountingApiMessageDefinitions.cs"
$Url = "http://172.16.63.241:6083/bbopman/messaging/apireferences"
$response = Invoke-WebRequest -Method Get -Uri $Url -Body $request
Set-Content -Path $docPath -Encoding Byte -Value $response.Content
我将其移植到bash
脚本中,如下所示:
#!/bin/bash
url="http://172.16.63.241:6083/bbopman/messaging/apireferences"
request="Namespace=='MyApplication.MessagingApi' Version=='current' DataDefinitionLanguage=='Csharp'"
http -d GET $url $request > ~/AccountingApiMessageDefinitions.cs
我得到的是错误的请求,但在服务器上成功处理了呼叫。所以我想我在阅读回复时犯了什么错误,但不知道是什么......这是我的外壳中的输出:
$ ./ExecuteRestCall.sh
HTTP/1.1 400 Bad Request
Content-Type: text/html
Date: Wed, 30 May 2018 18:45:50 GMT
Server: Kestrel
Transfer-Encoding: chunked
Vary: Accept
X-Powered-By: ServiceStack/5.02 NETStandard/.NET
谁能告诉我如何正确地从 Linux shell 中调用它?非常感谢。
httpie 的参数值不需要引号。发送它们时不带引号。
request="Namespace==MyApplication.MessagingApi Version==current DataDefinitionLanguage==Csharp"
此外,您似乎缺少 shell 脚本版本中的MakePartial
和MakeVirtual
参数。
顺便说一句:"在服务器上成功处理了调用" - 这不可能是真的。错误请求状态由服务器返回,而不是客户端上发生的情况。