vote up 1 vote down star
1

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?

flag

Interesting question. I want that answer too! – Skuta Dec 20 at 22:17

5 Answers

vote up 4 vote down

A quick check on PEAR found Services_Facebook

link|flag
vote up 1 vote down

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:

http://www.new.facebook.com/feeds/status.php?id=[idnumber]&viewer=[viewer]&key=[key]&format=rss20

link|flag
vote up 1 vote down

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:

 <?php
 require_once('facebook/php/facebook.php');
 $facebook = new Facebook("YOUR_API_KEY","YOUR_SECRET_KEY");
 $result = $facebook->api_client->fql_query("SELECT status FROM user WHERE uid = YOURIDNUMBER");
 // OR --- they both get the same data
 $result = $facebook->api_client->users_getInfo(YOURIDNUMBER,'status');
 print_r($result);
 echo "<pre>Debug:" . print_r($facebook,true) . "</pre>"; // debug info
 ?>

Other info:

  • You must be logged in and have the application added. OR you give the application offline_access permissions and have the aapplication added.
  • You can add offline_access by typing in the following url: http://www.facebook.com/authorize.php?api_key=YOUR_API_KEY&v=1.0&ext_perm=offline_access
  • more info on permissions found here: http://wiki.developers.facebook.com/index.php/Extended_permissions
  • I'm at a stopping point: anything my program calls the fql query or users_getInfo, my page stops executing the php? I'm guessing there are a limited amount of calls for new applications? I've never done any FB development so I'm completely new to it. Maybe make the call and save your recent status (or most recent statuses) in your own DB to prevent excessive calls to the API?

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

link|flag
You should be seeing something, somewhere. A blank output is usually a sign of a fatal error going to the apache error_log when you have display_errors = off in your php.ini. The FB client is nicely OO'ed PHP5 and generally throws quite meaningful and detailed exceptions in the event of an error. – iAn Dec 21 at 9:21
I ended up resetting my SECRET key and that solved the problem. However, my fql query won't give any results unless I include: $fb_user = $facebook->require_login();. The offline_access permission doesn't seem to be working correctly or I'm going at this wrong. – Bryan Denny Dec 21 at 9:37
vote up 0 vote down

Does anyone know of a good way to do this via RSS instead of their API?

link|flag
I thinks you should stick with the API for privacy reasons I would think that if you could do it with an rss feed you could potentially bypass fb privacy functions for any user. – mugafuga Dec 31 at 20:59
Which would be really bad for all – mugafuga Dec 31 at 21:00
vote up 0 vote down check

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!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.