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've tried to use the steps provided by facebook developers:

http://developers.facebook.com/docs/howtos/login/server-side-login/

However, after redirect, it cannot redirect back to the basic php page. Is there anything wrong with my code?

Here is my code:

require_once 'library/facebook.php';
    $facebook = new Facebook(array(
    'appId'  => '*** My APP ID ***',
    'secret' => '*** My Secret ***',                
    'fileUpload' => true
));

$my_url = "https://apps.facebook.com/carnumberchecking";
session_start();

$user = $facebook->getUser();
$me = null;

if($user)
{
$uid = $facebook->getUser();
}else{
$url = $facebook ->getLoginUrl( array (
'scope' => 'publish_stream',
'req_perms' => 1,
'fbconnect' => 0
 ));
 echo "";                
}                  

$code = $_REQUEST["code"];
if(empty($code)) {  
$_SESSION['state'] = md5(uniqid(rand(), TRUE)); // CSRF protection  
$dialog_url = "https://www.facebook.com/dialog/oauth?    client_id=187384241402698&redirect_uri=" . urlencode($my_url) . "&state="
                . $_SESSION['state'] . "&scope=user_birthday,read_stream";
echo("<script> top.location.href='" . $dialog_url . "'</script>");
}

if($_SESSION['state'] && ($_SESSION['state'] === $_REQUEST['state'])) {
echo "1";
$token_url = "https://graph.facebook.com/oauth/access_token?"
        . "client_id=187384241402698&redirect_uri=" . urlencode($my_url)
        . "&client_secret=4e45477f9ed79f95fc4fd3af8f8a579d&code=" . $code;

$response = file_get_contents($token_url);
$params = null;
parse_str($response, $params);
}
share|improve this question

closed as not a real question by CBroe, Igy, kamaci, Soner Gönül, Graviton Jan 14 at 3:49

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

It seems that you are mixing what you've found from a various sources on the internet..mostly out-dated tutorials...etc.

If you are planning to use the official facebook PHP-SDK, then this is a straight example for the login process: https://github.com/facebook/facebook-php-sdk/blob/master/examples/example.php

Otherwise, following the link you posted above, if you just compile the example snippets from above you should have a complete working example!!:

<?php 

   $app_id = "YOUR_APP_ID";
   $app_secret = "YOUR_APP_SECRET";
   $my_url = "YOUR_URL";

   session_start();

   $code = $_REQUEST["code"];

   if(empty($code)) {
     $_SESSION['state'] = md5(uniqid(rand(), TRUE)); // CSRF protection
     $dialog_url = "https://www.facebook.com/dialog/oauth?client_id=" 
       . $app_id . "&redirect_uri=" . urlencode($my_url) . "&state="
       . $_SESSION['state'] . "&scope=read_stream";

     echo("<script> top.location.href='" . $dialog_url . "'</script>");
   }

   if($_SESSION['state'] && ($_SESSION['state'] === $_REQUEST['state'])) {
     $token_url = "https://graph.facebook.com/oauth/access_token?"
       . "client_id=" . $app_id . "&redirect_uri=" . urlencode($my_url)
       . "&client_secret=" . $app_secret . "&code=" . $code;

     $response = file_get_contents($token_url);
     $params = null;
     parse_str($response, $params);

     $_SESSION['access_token'] = $params['access_token'];

     $graph_url = "https://graph.facebook.com/me?access_token=" 
       . $params['access_token'];

     $user = json_decode(file_get_contents($graph_url));
     echo("Hello " . $user->name);
   }
   else {
     echo("The state does not match. You may be a victim of CSRF.");
   }

Here you need to place your APP_ID, APP_SECRET and redirect URL...also you may want to change the permissions (scope) or remove it all together.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.