views:

131

answers:

1

If the user "Connects" to your website.

+1  A: 

yes, for example, in PHP you would do:

try {
    $facebook_albums = $facebook->api_client->photos_getAlbums($facebook_user_id, null);
}catch (Exception $e) {

}

where $facebook_user_id is the user's facebook_uid (user id)

read more at http://wiki.developers.facebook.com/index.php/Photos.getAlbums

Jayrox

related questions