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 :)
For Angular:
getUserPicture(userId) { FB.api('/' + userId, {fields: 'picture.width(800).height(800)'}, function(response) { console.log('getUserPicture',response); }); }