If the user "Connects" to your website.
views:
131answers:
1
+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
2010-01-26 01:35:49