Running a Play! app with Scala. I\'m doing a request where the response is expected to be a JSON string. When checking the debugger, the JsonElement returns OK with all info
I had a similar problem and I had to change jsonObject.getAsString() to jsonObject.toString();
jsonObject.getAsString()
jsonObject.toString();