1

我不是 linux 专家,使用 curl 对我来说太复杂了。所以我找到了 httpie 并尝试调用我自己用 C# 编写的 REST 服务器之一,针对 .NETCore 2 并在 CentOS 7 下的 Docker 上运行。

我在 Windows 上有一个可用的 Powershell 脚本,并尝试使用 将其移植到 bash 脚本httpie,不幸的是没有运气。

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:\Projects\AccountingApiMessageDefinitions.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

我得到的是 BAD REQUEST 但在服务器上成功处理了呼叫。所以我想我在阅读响应时做错了,但不知道是什么......这是我的shell中的输出:

$ ./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 调用它?非常感谢。

4

1 回答 1

0

httpie 的参数值不需要引号。不带引号发送。

request="Namespace==MyApplication.MessagingApi Version==current DataDefinitionLanguage==Csharp"

此外,您似乎缺少 shell 脚本版本中的MakePartialandMakeVirtual参数。

顺便说一句:“在服务器上成功处理了呼叫” - 这不可能是真的。错误的请求状态是由服务器返回的,而不是客户端上发生的事情。

于 2018-05-30T19:26:51.910 回答