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.

My web app (rails 3 on heroku) is sort of like the basic blog app used so often for rails getting started demos, extended to host a blog for multiple businesses.

If a facebook user "Tom" writes a comment on the blog for business "Acme", how can my app re-post the comment onto Tom's Facebook wall? And also re-post the comment to Acme's Facebook page?

The public user writing the comment is NOT a logged in User on our system (the business whose blog is receiving the comment is a User).

share|improve this question

1 Answer

up vote 1 down vote accepted

There is an option for the user to also post the comment on their Facebook wall if you are using the Facebook comments social plugin. Otherwise, you would need to use the Facebook API and have the user authenticate with your Facebook app id and grant you publish stream permission and then you could post to their wall when posting a comment. Or you could popup the Facebook Share dialog via javascript and the user wouldn't need to authorize your application.

share|improve this answer

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.