i am following that tutorial. http://developers.facebook.com/docs/authentication/
but it redirect two times. first with code=NULL and the next time it will have the code.. i dont want to redirect when code = NULL .plz tell me the solution. Here is my complete code.
$code = $_REQUEST['code'];
if(empty($code)) {
$dialog_url="https://www.facebook.com/dialog/oauth?client_id=$app_id&redirect_uri=$my_url&scope=email";
echo("<script> top.location.href='" . $dialog_url . "'</script>");
}
$token_url = "https://graph.facebook.com/oauth/access_token?client_id="
. $app_id . "&redirect_uri=" . urlencode($my_url) . "&client_secret="
. $app_secret . "&code=" . $code;
$access_token = file_get_contents($token_url);
$graph_url = "https://graph.facebook.com/me?" . $access_token;
$user = json_decode(file_get_contents($graph_url));
$my_urlthe same as this page? – ifaour Apr 28 '11 at 20:13