I'm looking for a good, simple PHP function to get my latest Facebook status updates. Anyone know of one?
Thanks!
EDIT: I've added a half-solution below.
Or if anyone knows a good way to read in the RSS feed and spit out the recent status update?
|
1
|
|||
|
|
|
Since I couldn't use the API route, I went with the RSS found at: http://www.new.facebook.com/minifeed.php?filter=11 And used the following PHP function, called StatusPress, with some of my own modifications, to parse the RSS feed for my Facebook status. Works great! |
||
|
|
|
|
Does anyone know of a good way to do this via RSS instead of their API? |
||
|
|
This is an incomplete answer, but this is what I've gotten so far: First: add the developer application on FB. Then create a new application. Call it whatever you want. Second: Download the PHP client. Dump it somewhere on your webhost, i.e. /facebook/ Third: Copy the following beginner code to get yourself started into a php file:
Other info:
I hope this helps someone get started! EDIT: It seems that FB won't let you access someones status, even if the offline_access is on, unless you are that person or their friend (depending on their privacy settings). I did however, finally manage to find the RSS feed in the new profile version: http://www.new.facebook.com/minifeed.php?filter=11 |
||||
|
|
|
I never seem to get along with PEAR, but if you have better luck than I, then the PEAR solution seems the best route long term. Another idea is to explore the Facebook Developer API library and see if that might give you anything you are looking for. Lastly, there used to be a way to get an RSS feed... but I can't seem to find any instructions that work anymore, but you might poke around Facebook help if that interests you. Mine ends up looking something like this:
|
||
|
|
|
|
A quick check on PEAR found Services_Facebook |
||
|
|