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).
|
|
There's an RSS feed for the notifications. |
||
|
|
|
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 |
||
|
|
