I'm using the Facebook Graph API.
I would like to download the full size image of all my users' Facebook profile pictures.
https://graph.facebook.com/<user alias>/picture gives you access to a tiny thumbnail of the user's current profile picture.
If I want to download the user's full size profile photo it looks like I need to do something like in this pseudo-code...
# Get albums
albums = fetch_json('https://graph.facebook.com/<user alias>/albums')
# Get profile pictures album
profile_picture_album = albums['data']['Profile Pictures'] # Get profile picture album
# Get the pictures from that album
profile_pictures = fetch_json('https://graph.facebook.com/<profile_picture_album_id>/photos')
# Get the most recent (and therefore current) profile picture
current_profile_picture = profile_pictures['data'][0]
image = fetch_image_data(current_profile_picture['source'])
The trouble is that this requires two different API accesses and then the image download. And if there are a lot of albums or pictures in an album then I'll need to deal with paging.
It seems like there should be a faster/easier way to access the user's current profile picture. Anybody know of one?
(FYI: I happen to be using Python to do this but I imagine the answer would be language agnostic)