2013-07-10 45 views

回答

2

你可以使用一個FQL查詢,如

$fb->api(array(
        'method' => 'fql.query', 
        'query' => 'SELECT message from stream where source_id =415533455147213 and type != 46', 
       )); 
    //you might need to urlencode the query 

你可以找到字段的信息拉回到這裏https://developers.facebook.com/docs/reference/fql/stream

+1

OMG,試過這種方式,但與'型<> 46' ...謝謝,現在工作;]] –