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);