I have been trying to use this plugin to post jsons to a REST api, I simply can't. It always sends as application/x-www-form-urlencoded and tries to parse my json into params. eg: ``` json { "id":1, "name": "John Doe" } ``` becomes: `id=1&name=John+Doe`