i am using facebook SDK 3.0 i have to get profile picture of user login. Here is the code I use:
URL image_value = new URL(\"http://graph.facebook.com/\"+id
String id = user.getId(); try { URL url = new URL("http://graph.facebook.com/"+ id+ "/picture?type=large"); String image_path = uri.toString(); System.out.println("image::> " + image_path); } catch (MalformedURLException e) { e.printStackTrace(); }