Obtenez la photo de profil de Facebook Graph-API

cette méthode pour récupérer la photo facebook profil ne fonctionne plus

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 est null

il fonctionnait normalement, mais pas maintenant et je pense que facebook a changé quelque chose
lorsque je vérifie l'URL qui redirige vers une autre url

http: //graph.facebook.com/"exemple d'id(2154847)"/image?type=grand ---> https://fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/t1.0 - 1/s200x200/1480603_10201506903424508_71775 13962104534241_n.jpg

Modifier
solution :

 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;

}

OriginalL'auteur toufik3119 | 2014-05-07