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'm trying to do something that doesn't seem to hard, but I just can't find how to achieve it. I have a web app with a leaderboard, and I would like to give the user the opportunity to share his score on facebook. There would be a link "publish to facebook" that would either bring up a popup, either redirect to a page on facebook, in both cases with a dialog to publish a story on his wall.

This has to be easy and very direct, the user should not be prompted for allowing an app or anything like that. However, it's been quite a while since I've done any app do that : is it still possible ?

FYI this is a ruby on rails 3.2 app

Thanks for you time guys!

share|improve this question

1 Answer

up vote 0 down vote accepted

The best thing to do is to include the facebook javascript sdk in your app page and then just call the FB.ui method for opening a Feed Dialog.

You can also open up a popup of your own and direct it to the direct url of the same feed dialog:

http://www.facebook.com/dialog/feed?
  app_id=APP_ID&
  link=LINK_URL&
  picture=PICTURE_URL&
  name=NAME&
  caption=CAPTION&
  description=DESCRIPTION&
  message=MESSAGE_AS_THE_USER&
  redirect_uri=REDIRECT_URL

It's all there in the feed dialog page.

share|improve this answer
Looks like they deprecated "message".. Kind of useless for me then. But thanks! – ksol Mar 15 '12 at 16:28
1  
The message field was removed because apps misused it. What you can do is use the open graph to have a ruby view that just outputs the og tags, with that you can create what ever you want and then when popping the fb feed dialog just post that link, facebook will extract all the info from the og tags, and the user is left to write his own messsage. – Nitzan Tomer Mar 15 '12 at 16:33
Yep I've just seen that. It might do the job. Thanks again :) – ksol Mar 15 '12 at 16: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.