I want the easiest way to download all the status updates I've done since inception of my account?
You can go to https://www.facebook.com/settings and click on download facebook data at the bottom.
Go to https://www.facebook.com/settings, click "Download a copy of your facebook data", down at the bottom of the page.
Or, using the graph API, access /me/statuses
repeatedly, setting the until
parameter to the date of the last post you parsed, something like this:
# 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
But be aware that some have observed that some posts mysteriously go missing using any API to download all posts.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With