0

Javascript は次のとおりです。

このコードの目的は、過去 3 か月間のユーザーの投稿数を取得することです。

FB.api('/me/photos?fields=created_time&since=2013-03-28', function(response){
        dLen = response.data.length;
        if(!response.paging.next){
            dLenContent = "<div><span class='left'>"+i+++".</span><span class='mid'>  Number of times tagged in photos: </span><span class='right'>"+dLen+"</span></div>";
        }
        else{
            nextURL = response.paging.next;
            while(nextURL){
                graphURL = nextURL;
                ---------------------------------------
                ---How to fetch data from next page(graphURL)?---
                ---------------------------------------
                dLen = dLen + response.data.length;
                nextURL = response.paging.next;
            }
        }
        pInfo = document.getElementById("personalInfo");
        pInfo.innerHTML += dLenContent;
    });

次のページがある場合は、コードのelse部分が実行されます。その else 部分では、取得したオブジェクトの次のページになるまでアクティブになる while ループを 1 つ記述しました。

「response.paging.next」の取得データを知りたいのですが?

4

1 に答える 1