1. ホーム
  2. json

[解決済み] cURLでJSONデータをPOSTするにはどうすればよいですか?

2022-03-13 11:58:53

質問

Ubuntuを使用していて、インストールした cURL を搭載しています。Spring RESTアプリケーションをcURLでテストしたいのですが。私は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/clear HTTP/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;
}

解決方法は?

content-typeをapplication/jsonに設定する必要があります。しかし -d (または --data ) は、Content-Type を送信します。 application/x-www-form-urlencoded これはSpring側では受け入れられません。

を見てみると curl マニュアルページ を使えばいいと思います。 -H (または --header ):

-H "Content-Type: application/json"

完全な例です。

curl --header "Content-Type: application/json" \
  --request POST \
  --data '{"username":"xyz","password":"xyz"}' \
  http://localhost:3000/api/login

( -H--header , -d について --data )

ただし -request POST 任意 を使用する場合 -d のように -d フラグは POST リクエストを意味します。


Windowsの場合、少し事情が異なります。コメントスレッドをご覧ください。