Facebook php SDK / SQL - Get the first EVER user status

I need help to get the first status of EVER users. Is there any chance to do this?

Now I use:

$result = $this->fb->api('/me/statuses?limit=1'); 

How to make it work, maybe some kind of fql request or something else? I researched a lot of topics about this question, but did not find the answer that worked.

THANK YOU IN FREEDOM!

+4
source share
1 answer

I am afraid that this is impossible. Your two options will use /me/status and then swap back in time or use FQL (i.e. /fql?q=SELECT status_id, message FROM status WHERE uid = 36902548 and time < 1310785030000 order by status_id asc ) and go back in time and / or find the date when a user joined Facebook and looked around there.

None of them will be very effective and probably impractical for a large number of users.

0
source

Source: https://habr.com/ru/post/1391511/


All Articles