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 am using Facebook C# SDK version 5.2.1 in Iframe App. I want to post something like images, links or videos to User Wall.

Is it possible to do the same using javascript SDK?

Please refer some sample codes or links that i can use for C# or javascript SDK..

share|improve this question

1 Answer

https://developers.facebook.com/docs/reference/javascript/

FB.ui(
  {
   method: 'feed',
   message: 'getting educated about Facebook Connect',
   name: 'Connect',
   caption: 'The Facebook Connect JavaScript SDK',
      description: (
      'A small JavaScript library that allows you to harness ' +
      'the power of Facebook, bringing the user\'s identity, ' +
      'social graph and distribution power to your site.'
   ),
   link: 'http://www.fbrell.com/',
   picture: 'http://www.fbrell.com/f8.jpg',
   actions: [
        { name: 'fbrell', link: 'http://www.fbrell.com/' }
   ],
  user_message_prompt: 'Share your thoughts about RELL'
  },
  function(response) {
    if (response && response.post_id) {
      alert('Post was published.');
    } else {
      alert('Post was not published.');
    }
  }
);
share|improve this answer
Did this answer, solve, or 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. Thank you! – DMCS Apr 17 '12 at 19: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.