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
Use https:// instead of http:// i faced the same problem.
URL image_value = new URL("https://graph.facebook.com/"+id+"/picture" ); profPict = BitmapFactory.decodeStream(image_value.openConnection().getInputStream());