2011-09-22 86 views

回答

7

你可以去https://www.facebook.com/settings 並點擊底部的下載facebook數據。

+0

謝謝你,你只是節省了我很多小時的工作。格拉西亞斯... –

+0

謝謝!這很快,簡單而有用! – ndhar

4

轉到https://www.facebook.com/settings,單擊頁面底部的「下載facebook數據副本」。

或者,當使用圖形API,訪問/me/statuses反反覆覆,until參數設置到最後您解析後的日期,是這樣的:

# pseudocode: 
until = now 
do: 
    posts = fetch https://graph.facebook.com/me/statuses?access_token=xxx&until=until 
    for each post in posts: 
     savepost(post) 
     if post.updated_time is before until: 
      until = post.updated_time 
while posts.length > 0 

但要知道,有些人認爲,someposts神祕go missing使用任何API下載所有帖子。

相關問題