PHP系统帖子,接收我页面上的所有朋友帖子,比如在facebook和twitter上

时间:2013-07-26 06:23:55

标签: php facebook posts twitter-follow

请,我需要帮助,我正在创建一个网站,我想建立关注者系统,但我在发布系统时遇到问题。 我希望网站用户的“索引”看到你朋友的帖子,但不知道这样做。 这是我试图做的事情,我知道这样做有什么不对,但我认为这有助于我理解。

*$result = mysqli_query($con,"SELECT * FROM posts WHERE userid='127' OR userid='2' ");`

//因此,我的朋友的每个回复“id”都知道出了什么问题,请帮助我。

while($row = mysqli_fetch_array($result)) {
  echo $row['post'] . " " . $row['userid'];
  echo "<br>";
}*

1 个答案:

答案 0 :(得分:0)

对于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));