How far back can I go with Facebook Graph API?
I'm trying to get my photos and status updates in my iphone app. But it seems that after about 10-15 API calls you can't go to the next page anymore. I noticed that Facebook does not give everything in one graph call, they'll give you this thig at the end 开发者_JAVA百科of each API call:
"paging":{"previous":"https:\/\/graph.
facebook.com\/myid\/statuses?access_token=somebigvalue","next":"https:\/\/graph
.facebook.com\/myid\/statuses?access_token=anothersomebigvalue"}}
Now I wonder if there's any way I could go back and grab photos from very early days (i.e. status updates which I was tagged the first few days I joined to facebook). Has anyone got any clue?
I finally figured out that I can only go back one and a half year, until June 2009. I'm not happy with this, and I might open another question to see if I can go further back with other methods.
I tried facebook api with REST framework for Java and I was able to get my status messages for an year ago. So if you are pleased with an interval of one year - this is what you can get.
精彩评论