Skip to content Skip to sidebar Skip to footer

Facebook News Feed Reader On Android

I am trying for a facebook integration on my android application. My requirement is to read each news feed as and when it comes, and to display it using a toast. All the sample a

Solution 1:

using this after login in facebook dialog..

     Facebook fb = new Facebook(APP_ID);
     String newsfeed=fb.request("me/home"); 
     System.out.println(newsfeed);

for get user news feed....

Solution 2:

I'm guessing it's easiest done using Facebook Android SDK (you need permission for your application to access someone's news feed);

http://developers.facebook.com/docs/guides/mobile/#android

And Graph API documentation is a good read too;

http://developers.facebook.com/docs/reference/api/

Maybe there's some better examples but I found those documents rather complete while I was dealing with Facebook accessing.

Solution 3:

Check out the Facebook API at http://developers.facebook.com/

Solution 4:

Have you looked at facebook's owns api. Mobile Apps. If they don't have a solution on getting new news, then theres probably no clean api to get news an you have to turn to a scrape api or write your own scrape functions.

Post a Comment for "Facebook News Feed Reader On Android"