I am doing an API call using the Android Annotations RestService. The only problem is that I receive a JSON but I don't know how to see that JSON string. Is there a way I can view the response data so I can see the JSON string/content?
I tried using an ClientHttpRequestInterceptor but that only shows data of the request to the server and not the response.
Create this interceptor:
And use this interceptor in your client:
Based on this code.