Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the Facebook Status feed URL these days?

I know that it was previously possible to display your most recent Facebook statuses on your website as an RSS feed, but it seems they've changed their setup and I can't figure out where to find the feed anymore....

I saw some people searching for this a while ago, but since Facebook just released their new layout, I didn't know if this might have changed again.

Any help would be greatly appreciated.

like image 333
Chris Schmitz Avatar asked Feb 06 '10 22:02

Chris Schmitz


4 Answers

Try this for a feed in JSON-format.

http://graph.facebook.com/[uid]/feed

like image 65
Will Voelcker Avatar answered Nov 20 '22 09:11

Will Voelcker


Facebook appears to have killed all the public status feeds in the name of user privacy. The only way to fetch it is to build a facebook application that gets your status updates, and then associating your facebook account with that application to give it permission to access your status updates so it can put them somewhere else.

Thankfully, someone has already done that for us. Just go to http://apps.facebook.com/statusexport/ while logged in to facebook and grant the app permission. Then it will give you a public URL to an RSS feed of your status updates.

like image 31
ChiperSoft Avatar answered Nov 20 '22 07:11

ChiperSoft


Just keep it simple... This is an easy way to load your latest status(es) using graph.facebook.com through curl / php. Includes a quick simple function.

Easiest way to load your latest facebook status

like image 41
Lenny Avatar answered Nov 20 '22 07:11

Lenny


I found this site which you authenticate, and it will then give you a working rss feed. I have found that it does have some limitations, but you can see it here: http://www.fbrss.com

like image 20
Joshua Bridge Avatar answered Nov 20 '22 07:11

Joshua Bridge