Page 1 of 1
facebook app anyone?
Posted: Wed Nov 18, 2009 8:51 pm
by knightsjoker
was wondering if anyone know any facebook app tutorial that teach how to create an application to display blogs' rss?
Re: facebook app anyone?
Posted: Thu Nov 19, 2009 8:21 am
by iankent
Have a look here:
http://developers.facebook.com/
Loads of information, full API reference and has ready made code for PHP etc that you can alter to suit your needs. Facebook have put a lot of time into making their API really straightforward and easy to use!
edit:
to display blogs RSS you'd need to use something like fopen() to get the RSS/Atom feed, then create an XMLDocument from it and parse it to get the info (have a look at PHP's XML documentation, has some good examples). Alternatively you could download a ready made RSS or Atom parser for PHP and save a bit of time
hth