2

I'm trying to get an image using volley though a https server. Problem is it doesn't retrieve the image but when testing with a http, it works.

imageListener = ImageLoader.getImageListener(holder.ivAttachment,
R.drawable.bkg_rr_gray, R.drawable.bkg_rr_gray);
imageLoader.get("https://domain.com/path/to/iamge.jpg",imageListener);

help?

1 Answers1

0

I think you need to implement HttpStack in volley request. Please check the below link

https://github.com/smanikandan14/Volley-demo#integrating-volley-to-your-project

prasad thangavel
  • 173
  • 1
  • 2
  • 11
  • To note though, I have tried other https images and they work fine. But certain https does not load. I'm just trying to load images. Does it have to be complicated? Just asking. – Just Nat btw Mar 14 '14 at 16:12
  • http://stackoverflow.com/questions/2740975/https-with-self-signed-ssl-certificate-issues-solution-or-better-way may be this will help to you. is that your ssl is self signed certificate? – prasad thangavel Mar 15 '14 at 04:38