我正在使用播放!框架(2.0.4)作为我的android应用程序的休息服务。我想从 android 发送 POST 请求,但从路由接收错误消息。这就是我的路由文件的样子
POST /addText/:txt controllers.Application.addText(txt: String)
和来自 android 的 POST 请求
int response = HttpRequest.post("localhost:9000/addtext/").send("txt=some text").code();
我正在使用 Http Request库