Retrofit: Unable to create @Body converter for class

Solution:
declare body value in your interface with next:

@Body RequestBody body
and wrap String JSON object:

RequestBody body = RequestBody.create(MediaType.parse("application/json"), obj.toString());

Leave a Comment

File not found.