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 have this code:

 FB.ui(
  {
    method: 'stream.publish',
    attachment: {
      name: 'JSSDK',
      caption: 'The Facebook 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.'
      ),
      href: 'http://fbrell.com/'
    },
    action_links: [
      { text: 'fbrell', href: 'http://fbrell.com/' }
    ]
  },
  function(response) {
    if (response && response.post_id) {

/* 
   HERE
*/
      alert('Post was published.');
    } else {
      alert('Post was not published.');
    }
  }
);

In Here Point, how i can get the user uid ? I'v Tryed with:

var user_id = FB.getSession().uid; IS NULL :( FB.api('/me'); //require OAUTH

But with 0 result. Thanks in advance.

share|improve this question
refer this link karlsheen.com/facebook/… – Pradeep Singh Dec 30 '10 at 17:27
With PURE JS/SDK is not possible? – beddamadre Dec 30 '10 at 17:29

1 Answer

Check whether this link can help you. It helped me with a perfect working example.

https://developers.facebook.com/blog/post/525/

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.