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?
Yes.
Use Facebook Graph API to serve your purpose. Do this:
Add a Facebook login button to your website using Facebook Authentication refer Login subheading here
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 hereParse 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.