It is very easy to get the url of profile picture from facebook if we have user id.
We just create a url like this:
Here id is the user id of the Facebook account.
try {
// Type may be normal,large or small
URL mProfilePic = new URL(
"http://graph.facebook.com/" + id + "/picture?type=normal");
} catch (MalformedURLException e) {
e.printStackTrace();
}
0 Comment(s)