Can i get all my posts(profile feed) using Facebook Graph API explorer?

facebook, facebook-graph-api

Solution

Get Access Token

http://developers.facebook.com/tools/explorer

Then

https://graph.facebook.com/YOUR_ID/feed?access_token=FACEBOOK_ACCESS_TOKEN

This post might also be helpful:

How to show facebook feed messages from my site without access_token?

Problem

Can i get ALL my posts(my Profile feed) using Graph API explorer? I tried using https://graph.facebook.com//posts?limit=500 but it doesn't seem to give me everything(even increasing the limit doesn't work) which means it given only a predefined number of posts. Is there a way to get all posts by me from the time i joined Facebook(because i can get them by scrolling down on my Wall which means facebook has stored them). Thanks in advance

Original source