I'm trying to query the Facebook Graph API using the PHP-SDK. What I'm trying to do is pretty much what is specified in the title: select ALL posts from a specific month of this year.
I've been searching for a while and I can't find a correct syntax to select the posts from a date range.
Here is an example using a conditional statement with the "created_time" field. I've tried something like this (select the posts from jan 1 2012 to jan 31 2012):
SELECT post_id, FROM stream WHERE source_id = me() AND created_time < 1325394000 AND created_time > 1327986000
But this query is only returning the posts from january 31.
Thanks in advance for your help.