我正在收到facebook页面供稿:$fb->api('/415533455147213/feed?limit=3');
,我的问题是:如何过滤此请求,它不会返回名为status
的类型的Feed(`'type'=&gt ;'状态')
答案 0 :(得分: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