我想要最简单的方法来下载自我的帐户开始以来我所做的所有状态更新?
答案 0 :(得分:7)
您可以转到https://www.facebook.com/settings 然后点击底部的下载facebook数据。
答案 1 :(得分: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
但请注意,有些人使用任何API下载所有帖子,some posts神秘go missing。