我使用Ubuntu并在上面安装了cURL。我想用cURL测试我的SpringREST应用程序。我在Java端编写了POST代码。然而,我想用cURL测试它。我正在尝试发布JSON数据。示例数据如下:

{"value":"30","type":"Tip 3","targetModule":"Target 3","configurationGroup":null,"name":"Configuration Deneme 3","description":null,"identity":"Configuration Deneme 3","version":0,"systemId":3,"active":true}

我使用以下命令:

curl -i \
    -H "Accept: application/json" \
    -H "X-HTTP-Method-Override: PUT" \
    -X POST -d "value":"30","type":"Tip 3","targetModule":"Target 3","configurationGroup":null,"name":"Configuration Deneme 3","description":null,"identity":"Configuration Deneme 3","version":0,"systemId":3,"active":true \
    http://localhost:8080/xx/xxx/xxxx

它返回以下错误:

HTTP/1.1 415 Unsupported Media Type
Server: Apache-Coyote/1.1
Content-Type: text/html;charset=utf-8
Content-Length: 1051
Date: Wed, 24 Aug 2011 08:50:17 GMT

错误描述如下:

服务器拒绝了此请求,因为请求实体的格式不受请求方法()的请求资源支持。

Tomcat日志:“POST/ui/webapp/conf/clearHTTP/1.1”415 1051

cURL命令的正确格式是什么?

这是我的Java端PUT代码(我测试过GET和DELETE,它们都有效):

@RequestMapping(method = RequestMethod.PUT)
public Configuration updateConfiguration(HttpServletResponse response, @RequestBody Configuration configuration) { //consider @Valid tag
    configuration.setName("PUT worked");
    //todo If error occurs response.sendError(HttpServletResponse.SC_NOT_FOUND);
    return configuration;
}

当前回答

对于我使用过的PowerShell:

curl.exe -H "Content-Type: application/json" --data "@content.json" http://localhost:8080/appname/path

其中content.json是包含请求的本地json文件的名称,curl.exe而不是curl,不使用InvokeWebRequest的别名。

或者如果您想直接指定JSON:

curl.exe -H "Content-Type: application/json" --data '{\"username\":\"xyz\",\"password\":\"xyz\"}' http://localhost:8080/appname/path

其他回答

这对我来说效果很好,另外还使用了BASIC身份验证:

curl -v --proxy '' --basic -u Administrator:password -X POST -H "Content-Type: application/json"
        --data-binary '{"value":"30","type":"Tip 3","targetModule":"Target 3","configurationGroup":null,"name":"Configuration Deneme 3","description":null,"identity":"Configuration Deneme 3","version":0,"systemId":3,"active":true}'
        http://httpbin.org/post

当然,在没有SSL和已检查证书的情况下,您不应该使用BASIC身份验证。

我今天再次遇到这个问题,使用Cygwin的cURL 7.49.1 for Windows。。。当在JSON参数中使用--data或--data二进制时,cURL会感到困惑,并将JSON中的{}解释为URL模板。添加-g参数以关闭cURL globbing修复了这个问题。

另请参见传递带括号的URL以卷曲。

您可以通过--dataraw参数将JSON文件的内容分类为curl。

卷曲'https://api.com/route'-H'内容类型:application/json'--数据原始“$(cat~/.json/payload-2022-03-03.json|grep-v'^\s*//')”

注意:JSON文件中的注释通过grep-v“^\s*//”过滤掉

您还可以使用grep或cat通过标准输入将数据传递给curl。

grep-v'^\s*//'~/.json/payload-2022-03-03.json|curl'https://api.com/route'-H'内容类型:application/json'-d@-

cat~/.json/payload-2022-03-03.json|grep-v'^\s*//'|curl'https://api.com/route'-H'内容类型:application/json'-d@-

这对我有用:

curl -H "Content-Type: application/json" -X POST -d @./my_json_body.txt http://192.168.1.1/json

以下代码适用于我。

我使用的是示例数据api

curl -X POST --data @json_out.txt https://sampledataapi.com/API/login

这里是解释

-X Means the HTTP verb.
--data Means the data you want to send.

问题在这里:

HTTP/1.1 415 Unsupported Media Type

服务器登录无法解释此请求的媒体类型,因此将其解析为text/html

任何资源的媒体类型都在内容类型中声明请求标头的属性

“接受”。。。header将使该请求失败,因此发送任何JSON请求都需要以下内容,即内容类型

-H 'content-type: application/json'

假设数据和URL类似于

{“电子邮件”:“admin@admin.com“,”密码“:”123456“}

http://localhost:5000/api/login

然后在Linux中

curl  http://localhost:5000/api/login  -H 'content-type: application/json'  -d '{"email": "user@admin.com", "password": "123456"}'

在Windows中(参数周围的单引号不起作用)

curl  http://localhost:5000/api/login  -H "content-type: application/json"  -d "{\"email\": \"user@admin.com\", \"password\": \"123456\"}"

-当命令中存在-d{…..}时,不需要X POST密钥。

对于PUT请求:

-X PUT