0

拜托,我需要帮助,我正在创建一个网站,我想放置关注者系统,但我无法发布系统。我希望网站用户的“索引”可以看到您朋友的帖子,但不知道该怎么做。这是我尝试做的事情,我知道这种方式有什么问题,但我认为它会帮助我理解。

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

//所以它与我朋友的每个reitiendo“id”一起知道什么是错的,请帮助我。

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

1 回答 1

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));
于 2013-07-26T07:56:12.200 回答