是否有可能在我的网站数据库中获取我的fb墙条目?

i want to have my or someone else facebook wall entries (only posts , no comment or pictures ) in my website database ..... i've been reading around but i couldn't find much .

so i wonder if it is possible at all ? i've gone as far as login in to app and retriving access token

require '../src/facebook.php';

$facebook = new Facebook(array(
  'appId'  => '3333',
  'secret' => 'xxxxx',
));

$user = $facebook->getUser();

if ($user) {

    $user_profile = $facebook->api('/me');
    $access_token = $_SESSION['fb_284654551659478_access_token'] ;
} 

what now ? i cant find anything in fb document about retriving user entries

Checkout Facebook Graph Explorer: https://developers.facebook.com/tools/explorer/

Use: me?fields=posts

You can try using graph API,

https://graph.facebook.com/{SOME_USER_NAME}/feed?access_token={SOME_ACCESS_TOKEN}