-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
No JSON response body #430
Description
I saw my issue #427 was closed. In order to test the fix, I've cloned your repository and built the 2.1.0.BETA JARs. (For which I had to disable some unit tests that were failing: DateKitTest, HttpRequestTest, ANYTest) I then refactored my code, since there is zero backwards compatibility (annoying!)
I am able to confirm that the original issue is fixed - I can pass in a JSON body with a value contain an equals sign, e.g. {"str":"="}
However, now I have a worse problem - there is no body at all on the response! It just returns empty with 200. I have read the README and updated my annotations, e.g.
@post(value = "/api/parse", responseType = ResponseType.JSON)
You can find my simple test case in the original issue. You'll obviously have to refactor...