我正在使用POSTMAN
应用程序来REST call (POST, GET)
处理我的 Scala Akka 应用程序。如果我从 angularJS 进行相同的调用,它可以工作,但是当我从 POSTMAN 触发它时,它会给出以下错误:
There was a problem with the requests Content-Type:
Expected 'application/json'
我的POST
电话是:
http://localhost:8090/user/signUp
其中包含我在Body
Postman 选项卡中添加的 3 个请求参数。我的 Header 需要一个值,即App_Id
我添加的Headers
我也添加了
Content-Type : application/json
在页眉中。但邮递员仍然给出上述错误。
我的申请代码是:
val route =
post {
path("user" / "signUp"){
headerValueByName("App_Id") { app_id => {
handleWith {
//application specific implementation
}
}
}
}