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 working on a facebook iframe which is basically a prize draw where the user enters his/her email in a form to participate. I have seen on some other similar facebook tabs that when you submit the form then the facebook feed dialog pops up so the user can post the their wall. Would anyone be able to share how that is done? I have it currently as a button on the page that loads after submit, but i really think this pop-up immediately after submit works more effectively in terms of social sharing. The task I have been set with this tab is to really drive fan acquisition so it's quite important that there is a low barrier to entry. Anyways, any help on the above would be greatly appreciated.

Thanks, Nick

share|improve this question

1 Answer

What you are looking for is the low-barrier of entry feed dialog.

https://developers.facebook.com/docs/reference/dialogs/feed/

<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:fb="https://www.facebook.com/2008/fbml">
  <head>
    <title>My Feed Dialog Page</title>
  </head>
  <body>
    <div id='fb-root'></div>
    <script src='http://connect.facebook.net/en_US/all.js'></script>
    <p><a onclick='postToFeed(); return false;'>Post to Feed</a></p>
    <p id='msg'></p>

    <script> 
      FB.init({appId: "YOUR_APP_ID", status: true, cookie: true});

      function postToFeed() {

        FB.ui({
          method: 'feed',
          link: 'https://developers.facebook.com/docs/reference/dialogs/',
          picture: 'http://fbrell.com/f8.jpg',
          name: 'Facebook Dialogs',
          caption: 'Reference Documentation',
          description: 'Using Dialogs to interact with users.'
        }, function (response) {
          document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
        });
      }

    </script>
  </body>
</html>
share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 20:21

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.