使用Picasso我想从Instagram媒体网址加载图片,如:
HTTP/1.1 302 FOUND
url返回https://scontent.cdninstagram.com/hphotos-xpt1/t51.2885-15/s320x320/e35/1530612_903806373047604_222778181_n.jpg
和重定向的位置标头,如:
String url="https://instagram.com/p/7-6FIJjMym/media/"
Picasso.with(MainActivity.this).load(url).into((ImageView)findViewById(R.id.imageView));
这是我的代码:
12-01 10:40:33.134 18439-18439/ D/Picasso: Main created [R0] Request{https://instagram.com/p/7-6FIJjMym/media/}
12-01 10:40:33.139 18439-18542/ D/Picasso: Dispatcher enqueued [R0]+5ms
12-01 10:40:33.142 18439-18544/ D/Picasso: Hunter executing [R0]+8ms
这是我的日志:
{{1}}
它不会加载图像。