Facebook php,如何筛选出Feed

时间:2013-07-10 20:54:05

标签: php facebook facebook-fql

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

1 个答案:

答案 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