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.
