0
我正在使用Play!框架(2.0.4)從我的Android應用程序休息servise。我想從android發送POST請求,但收到來自路由的錯誤消息。 這是我的路由文件看起來像從Android客戶端處理POST
POST /addText/:txt controllers.Application.addText(txt: String)
和Android的
int response = HttpRequest.post("localhost:9000/addtext/").send("txt=some text").code();
IM POST請求,利用HTTP請求library
謝謝,你讓我的一天! –