Share facebook wall on a website

1.9k views Asked by At

Is it possible to share facebook wall on side a website? I would like to let each logged in user on my site to view his facebook wall on a certain area. IF the user is not logged in to facebook I want him to login , then this will allow him to view his wall. I don't need other that his wall to be displayed in my site.

How possible is that?

1

There are 1 answers

0
Nishant On BEST ANSWER

Is it possible to share facebook wall on side a website?

Yes.

IF the user is not logged in to facebook I want him to login , then this will allow him to view his wall. I don't need other that his wall to be displayed in my site.

Use Facebook Graph API to serve your purpose. Do this:

  1. Add a Facebook login button to your website using Facebook Authentication refer Login subheading here

  2. Make sure you ask for Advanced Permission from your user to allow your application to use his read_stream. This will allow your app to access logged-in user's posts that includes his wall posts. See details here

  3. Parse the JSON object and display. You may want to have a long-poll or AJAX call ready to poll the new messages at regular intervals.