Is there a way to specify extra headers while fetching images using Universal Image Loader?

强颜欢笑 提交于 2019-12-09 13:58:02

问题


I'm trying to user the Universal Image Loader library to load my images. I trying to call a webservice api to fetch images off it, but it requires the client to attach extra http headers. i.e.: Access-Token: 124124141241421

Is there a way to dynamically do this in my project?


回答1:


You should implement your own ImageDownloader (extend ImageDownloader class and override InputStream getStreamFromNetwork(URI imageUri) method) and set it to configuration. Look into URLConnectionImageDownloader which is used by default, for example.

You should do like this:

HttpURLConnection conn = (HttpURLConnection) imageUri.toURL().openConnection();
conn.setRequestProperty("Access-Token", "124124141241421");


来源:https://stackoverflow.com/questions/14253995/is-there-a-way-to-specify-extra-headers-while-fetching-images-using-universal-im

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!