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.

My code which was working until yesterday, all of a sudden has started throwing errors. No clue what changed et all. It is also based on code from Facebook Serve side authentication Also I referred to others posts with the similar title but tried what they mention.

Here is the code

<?php 

   $app_id = "my app id";
   $app_secret = "my app secret";
   $my_url = "http://apps.facebook.com/myappnamespace";

//Tried with https in my_url //Also tried with the direct path to the app both with http and https and does not work as well. 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'];

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

   if($_REQUEST['state'] == $_SESSION['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);

     $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.");
   }

 ?>
share|improve this question

2 Answers

It seems you're using HTTP in the redirect URL, but you're trying to authenticate with HTTPS. Change the URL in $my_url to https:// and see if it works.

share|improve this answer
This sends it outside the facebook canvas instead of loading in the canvas. – pal4life Mar 23 '12 at 20:49
up vote 0 down vote accepted

There might be other ways to fix this but the php way never worked for me then. I changed the approach to Javascript sdk way and things have been better.

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.