I am testing Retrofit to compare it with Volley and I am struggling to get the response from my requests. For example, I do something like this:
RestAdapter
With version 2.1.0, you can get the content as
public void onResponse(Call call, Response response) { String errorString = response.errorBody().string(); }