Is there anyway to get the full-size profile picture using any facebook api?
http://graph.facebook.com/{ID}/picture?type=large is way to small.
Thanks :)
found a way:
$albums = $facebook->api('/' . $user_id . '/albums'); foreach($albums['data'] as $album){ if ($album['name'] == "Profile Pictures"){ $photos = $facebook->api('/' . $album['id'] . '/photos'); $profile_pic = $photos['data'][0]['source']; break; } }