Scala Spray中请求的Json媒体类型

时间:2015-09-07 14:53:11

标签: scala spray spray-json spray-client

我有一个简单的json应用程序。如果我提出像

这样的请求,它可以正常工作
  

curl -X POST --data“userId = 1”http://localhost:8080/register

但是当我尝试发出json请求时请求失败,例如

  

curl -v -H“Content-type:application / json”-X POST -d'{“userId”= 1}'http://localhost:8080/register

> Content-type: application/json
>
< HTTP/1.1 415 Unsupported Media Type
< Server: spray-can/1.3.3
< Date: Mon, 07 Sep 2015 14:37:29 GMT
< Content-Type: text/plain; charset=UTF-8
<

Expected 'application/x-www-form-urlencoded' or Expected 'multipart/form-data'

如何让Spray处理json请求?

0 个答案:

没有答案