I am receiving this response in postman in Android, my response.body() is not null but still, there is no image showing in the image view.
if (response.isSuccessful()) {
if (response.body()!=null) {
Glide.with(getApplicationContext()).load(response.body()).into(iv_userimage_header);
Toast.makeText(SubtitutesDashboard.this, "Image Set", Toast.LENGTH_SHORT).show();
}
}
This is the response of postman