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 a system whereby a user performs an action on my site and that action is posted to their Facebook timeline. Simple.

However, if the user is not logged in to Facebook, when they perform the action, Facebook then prompts them to log in and throws the whole flow out.

Is there a way actions can be performed and stored until the user logs in to FB again? Or is it simpler to say if not logged in at that time do not post. Or is there a scope param I'm missing?

This is the code I use to post to FB:

if(!$facebook->getUser())
{
$fbfburl = $facebook->getLoginUrl(array('scope'=>'email,user_birthday,friends_birthday,user_likes,friends_likes,publish_stream'));
echo "<script> top.location=\"".$fbfburl."\"; </script>";
exit(0);
}

$og_url = "__MY_OG_URL__";

$params = array("listit"=>"http://****.com/pages/view=$new_id","access_token"=>$facebook->getAccessToken());

$out = $facebook->api('/me/app_namespace:add','post',$params);
share|improve this question

1 Answer

I'm going to re-ask this question differently.

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.