Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to have facebook integration in my website. Like in twitter in our profile settings, we only connect to facebook once and everytime we tweet .. it's automatically posted to our Facebook wall. Wanted to know if this is possible via facebook opengraph api. A user signs in on my website ... and his different actions performed on my website gets posted on his wall without providing/checking authentication every time he signs in to my website and perform an action (like in twitter)!!

Would appreciate any guidance. Thanks in advance!!

share|improve this question

1 Answer

In order to post to walls, you need to create an App so that you can request permissions to post to a Facebook wall (go to Facebook Apps to get started).

Once you have done this, you can use the App Dashboard to set up the permissions your App requires. Then, you can use the Javascript API to get your users logged in on your website, at which point the permissions may be granted. From there, you can continue to use the JS API to post to a wall.

Note: You will need to set up Objects and Actions in your App - see the Facebook Open Graph guide for more details.

share|improve this answer
I've already made a an app and object/action. But what i need to figure out is ... how can i make the user's account associate with his facebook account. I don't want to prompt user everytime to enter his facebook id/pass everytime he performs an action. – Abdul Qadir Aug 15 '12 at 14:52
Firstly, initialize the Facebook API: link Add a 'Sign In To Facebook' link to your page with 'FB.login()' in the onClick attribute, as per the SDK: link If the user is logged in already, this will not be required. Then, post to the wall as so: link – Callum McLean Aug 15 '12 at 20:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.