0

特定のユーザーの Facebook フィード データを取得しようとしています。PHPコードを使用して取得できます

$pageFeed = $facebook->api("/me/feed",array('access_token' => $facebook->getAccessToken(),'limit'=>5));

以下のような回答がありました。

Array
(
    [data] => Array
        (
                .....feed data...
        )
    [paging] => Array
        (
            [previous] => https://graph.facebook.com/xxxxxxx/feed?limit=5&since=1347771792&__previous=1
            [next] => https://graph.facebook.com/xxxx/feed?limit=5&until=1347642062
        )

)

後で、 https: //developers.facebook.com/blog/post/478/を見つけて、javascript を使用してフィード データをページ付けしました。次のコードで私が試した

<html>
<body onload="loadPosts()">
  <div id="fb-root"></div>
  <script>
    var graphURL = "https://graph.facebook.com/testname/posts?" +
                     "callback=processResult&access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&limit=10";

    // Use JSONP to call the Graph API
    function loadPosts() {
      var script = document.createElement("script");
      script.src = graphURL;
      document.body.appendChild(script);
    }

    function processResult(posts) {
      if (posts.paging == undefined) {
        document.getElementById("loadMore").innerHTML =
          "No more results";
      }
      else {
        graphURL = posts.paging.next;
        for (var post in posts.data) {
          var message = document.createElement("div");
          message.innerHTML = posts.data[post].message;
          document.getElementById("content").appendChild(message);
        }
      }
    }
  </script>
  <div id="content"></div>
  <button id="loadMore" onclick="loadPosts()">Load more</button>
</body>
</html>

JavaScriptコードを実行すると、常に結果として得undefinedられ、ボタンをクリックしたときに次の結果セットを取得できませんでしたload more

php または javascipt を使用して次の Facebook データのセットを取得するにはどうすればよいですか? 両方を試しましたが、まだ解決策を見つけることができませんでした。

アドバイスをお願いします。

前もって感謝します。

4

0 に答える 0