对于 Facebook,您可以使用 FQL 方法https://developers.facebook.com/docs/reference/fql/
检查它们,看看什么适合您。例如,对于艺术家信息,您可以执行以下操作:
$fql = 'SELECT name,fan_count,page_id,hometown,record_label,pic_cover,pic_large,website from page WHERE type="musician/band" AND name="Rihanna"';
$ret_obj = $facebook->api(array('method' => 'fql.query','query' => $fql));
foreach ($ret_obj as $var)
{
//Get the information you need.
}
您不能在 FB 中使用 SELECT * 来获得所需的一切。你必须指定所有你需要的东西。
同样对于 twitter,检查https://dev.twitter.com/docs/api/1.1。例如,这给出了具有该特定 ID 的人的最后 100 条推文。
$info=$twitter->request('https://api.twitter.com/1.1/statuses/user_timeline.json','GET',array('user_id'=>1234,'count'=>100,'contributer_details'=>true,'exclude_replies'=>true));