0

My app relies on very large, high quality user avatars. The code that I am currently using is this:

http://graph.facebook.com/USERID/picture?type=large

I get a picture, but it's about 200px by 200px

Is there a way to get the photo from the user's profile picture's album?

alexyorke
  • 4,224
  • 3
  • 34
  • 55
  • This is the question that answered my question: http://stackoverflow.com/questions/8574759/getting-full-size-profile-picture – alexyorke Aug 02 '12 at 22:23

1 Answers1

0

You can get the set of profile pics using the FQL query select src_big from photo where aid in (select aid from album where owner = me() and type = 'profile') and make an assumption that the first one is the current profile pic. It won't be foolproof however, but there's no other way to get a fullsize profile pic.

Connor Treacy
  • 1,072
  • 6
  • 12