检索Facebook帖子超过其默认限制

时间:2011-07-04 23:42:08

标签: facebook posts

有没有办法从Facebook检索更多帖子?我正在开发一个网站,需要从Facebook检索至少200个帖子。现在我只收到24个帖子。是否有可能获得200个帖子?

 $user_posts = json_decode(@file_get_contents(
           'https://graph.facebook.com/me/posts?access_token='.$access_token));
$user_posts = (array)$user_posts;
$user_posts = $user_posts['data'];
echo "<h1>Posts</h1>";
foreach($user_posts as $user_post){
    $user_post = (array)$user_post;

    echo "<table border='8' width='500'>";
    if(($user_post['picture'])||($user_post['message'])){
        echo "<tr>";
        echo '<td height="4"></td>';
        echo "<td>";
        if($user_post['message']){
            echo "<tr><td>Message : ".$user_post['message']."</td></tr>";
        }
           }
    }

感谢。

1 个答案:

答案 0 :(得分:1)

我找到了这个答案。 只需在网址中添加限制字段即可。

$ user_posts = json_decode(@file_get_contents(            'https://graph.facebook.com/me/posts?access_token='.$access_token.'&limit=200'));