publish data in Facebook
I am having problem while posting data through my app on Facebook when user is not login into Facebook.
I am using javascript SDK,
FB.api(\'/profile_id(anyid)/feed\',
\'post\',
{ message: \'hello dear offline msg\' }
);
开发者_开发问答
It is working if user is login into Facebook.
You cannot post to facebook without active session.
精彩评论