tags:

views:

79

answers:

3

I was thinking how to write a program which can log me to Facebook and collect the latest status updates of my friends to a linked list. Can this be done for example by PHP or Python without learning Facebook api or do I need to learn that first?

A: 

probably scraping their mobile site seem the easiest solution in that case

http://m.facebook.com/

python seem the best language to deal with it

dvhh
please note that you are heavily dependent on facebook not changing the mobile website too much. Whereas the api is hopefully more fixed or properly versioned.
dvhh
+1  A: 

To get your friends’ RSS status feed:

  1. Sign into Facebook
  2. Go to http://www.facebook.com/notes.php?friends
  3. Copy the link to “My Friends’ Notes” on the right hand side
  4. Replace “friends_notes” with “friends_status”

This will give you an RSS feed of all of your friend's statuses.

BeRecursive
A: 

Yes, you can certainly do it using Php but it would be really dirty. The right way is to use the Facebook API.

Spilarix

related questions