okhttp3-response-body-string-always-returns-empty
@Override
public void onResponse(@NotNull Call call, @NotNull Response response) throws IOException {
if (response.isSuccessful()) {
String myResponse = response.peekBody(99999L).string();
Log.i("string", myResponse);
}
}