此方法检索照片的Facebook个人资料不再适用
ImageView user_picture;
userpicture=(ImageView)findViewById(R.id.userpicture);
URL img_value = null;
img_value = new URL("http://graph.facebook.com/"+id+"/picture?type=large");
Bitmap mIcon1 = BitmapFactory.decodeStream(img_value.openConnection().getInputStream());
userpicture.setImageBitmap(mIcon1);
mIcon1为空
它正常运行但现在不行,我认为facebook已经改变了一些东西 当我检查重定向到另一个URL的URL
时http://graph.facebook.com/"id example(2154847)“/ picture?type = large ---> https:// fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/t1.0- 1 / s200x200 / 1480603_10201506903424508_71775 13962104534241_n.jpg
修改 解决方案:
public Bitmap getPhotoFacebook(final String id) {
Bitmap bitmap=null;
final String nomimg = "https://graph.facebook.com/"+id+"/picture?type=large";
URL imageURL = null;
try {
imageURL = new URL(nomimg);
} catch (MalformedURLException e) {
e.printStackTrace();
}
try {
HttpURLConnection connection = (HttpURLConnection) imageURL.openConnection();
connection.setDoInput(true);
connection.setInstanceFollowRedirects( true );
connection.connect();
InputStream inputStream = connection.getInputStream();
//img_value.openConnection().setInstanceFollowRedirects(true).getInputStream()
bitmap = BitmapFactory.decodeStream(inputStream);
} catch (IOException e) {
e.printStackTrace();
}
return bitmap;
}
答案 0 :(得分:6)
试试这个:
public static Bitmap getFacebookProfilePicture(String userID){
URL imageURL = new URL("https://graph.facebook.com/" + userID + "/picture?type=large");
Bitmap bitmap = BitmapFactory.decodeStream(imageUrl.openConnection().getInputStream());
return bitmap;
}
Bitmap bitmap = getFacebookProfilePicture(userId);
确保使用 https 而非 http 。
答案 1 :(得分:4)
试试这个:
img_value.openConnection().setInstanceFollowRedirects(true).getInputStream()