so with the new graph API i can access a user's statuses with something straightforward like:
$facebook->api('/me/statuses');
However, I am currently stuck with the older Facebook PHP library (~2007, copyright 2004-2009). Will switch later but for now need to make this work with the old library.
Question: How do I do the same thing (get a user's statuses, or other allowed connections) given a facebook object has been defined like:
$facebook = new Facebook(API_KEY, SECRET);
I don't see any references to the old documentation that could help.
Thanks!