tags:

views:

242

answers:

2

How to fetch notifications from face book. Is there any web-service or REST-based service by which we could fetch the notifications, contacts etc (like that in case of twitter).

A: 

There's an RSS feed for the notifications.

harriyott
harriyott, could you please be more precise.
Tarun Batta
+1  A: 

Yes, it's REST based, but it doesn't allow for simple HTTP logins like Twitter does.

The call you will want to use is: http://wiki.developers.facebook.com/index.php/Notifications.getList

You can read about authentication (using FB connect, requires an app-integrated browser instance) here: http://wiki.developers.facebook.com/index.php/Authorization%5Fand%5FAuthentication%5Ffor%5FDesktop%5FApplications or here (works with any browser): http://wiki.developers.facebook.com/index.php/Auth.createToken

Since you seem to be using C#, you may want to look into this to get started: http://wiki.developers.facebook.com/index.php/C%5FSharp

KiNgMaR