Tôi đang cố lấy một số dữ liệu json bằng OkHttp và không thể tìm ra lý do tại sao khi tôi thử ghi lại response.body().toString()
những gì tôi nhận được làResults:﹕ com.squareup.okhttp.Call$RealResponseBody@41c16aa8
try {
URL url = new URL(BaseUrl);
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url(url)
.header(/****/)
.build();
Call call = client.newCall(request);
Response response = call.execute();
**//for some reason this successfully prints out the response**
System.out.println("YEAH: " + response.body().string());
if(!response.isSuccessful()) {
Log.i("Response code", " " + response.code());
}
Log.i("Response code", response.code() + " ");
String results = response.body().toString();
Log.i("OkHTTP Results: ", results);
Tôi không biết mình đang làm gì sai ở đây. Làm cách nào để lấy chuỗi phản hồi?