Is there a possibility to use the parameters "since" and "until" in the likes request?
What I'm trying:
https://graph.facebook.com/me/likes?limit=500&offset=0&since=2011-01-01&access_token=...
I liked a post today, but it is not working. It can only show 2 pages which I liked in the past.
When using FQL, it is working as expected, but the "since" nor "until" parameter are working..
Also tried with FQL, but can't get it working:
https://graph.facebook.com/fql?q=' . rawurlencode('SELECT object_id FROM like WHERE user_id = me() LIMIT 500') . '&access_token=...
I think it is not possible to use those parameters on a like, am I correct?