If the user "Connects" to your websit开发者_开发技巧e.
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
精彩评论