如果用户“连接”到您的网站。
答案 0 :(得分:2)
是的,例如,在PHP中你会这样做:
try {
$facebook_albums = $facebook->api_client->photos_getAlbums($facebook_user_id, null);
}catch (Exception $e) {
}
其中$ facebook_user_id是用户的facebook_uid(用户ID)
在http://wiki.developers.facebook.com/index.php/Photos.getAlbums
了解详情