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 now working on a website where users can drag content to a certain box. Once a user drags a paragraph into this specific box , the dragged text is appended to the box. I want to be able to share the text on facebook . How am I able to implement the "post to wall" button so users will be able to share the data in the box on thier facbook wall?

*I already have a facebook app id.

Any suggestion will be helpful,

Thanks in advance

EDIT :

<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: "MYAPPID", status: true, cookie: true});

      function postToFeed() {

        // calling the API ...
        var obj = {
          method: 'feed',
          link: 'https://developers.facebook.com/docs/reference/dialogs/',
          picture: 'http://fbrell.com/f8.jpg',
          name: 'whoTalk',
          caption: 'Drag , Drop and Share !',
          description: 'Share the selected status on your facebook wall'
        };

        function callback(response) {
          document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
        }

        FB.ui(obj, callback);
      }

    </script>
  </body>
</html>
share|improve this question
1  
Do you want someone to write out all the code to post to a wall? You should show what you've tried, then we can help with what didn't work. Questions without code are the ones people don't pay attention to. – Juan Mendes Aug 8 '12 at 17:06
1  
Open a feed dialog: developers.facebook.com/docs/reference/dialogs/feed – Mathieu Imbert Aug 8 '12 at 17:07
You can start by looking this post answer stackoverflow.com/questions/2724977/… – Mauno V. Aug 8 '12 at 17:10
Check the edit , I've already have the pop-up box that allows the user to share something , I want the content in this box to be the content which the user dragged into the box i've mentioned above – Itamar Aug 8 '12 at 17:19
1  
@Zany , it's simply the code I need to use - what you'd except , I'd write the dialog box code by myself when facebook already offers it? Don't comment unless it's useful – Itamar Aug 9 '12 at 5:22
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.