I have the canvas app at http://apps.facebook.com/lotusphereindia
This works perfectly fine for most users. However, for some users (around 4 out of 12 users) it throws up an Oauth exception. I had used file_get_contents earlier. But once I started getting the error, i switched to curl - but the errors continue. I have tested this across multiple browsers & OSes, but the errors always happen for the same users.
The error (from var_dump($user);):
object(stdClass)#1 (1) { ["error"]=> object(stdClass)#2 (2) { ["message"]=> string(80) "An active access token must be used to query information about the current user." ["type"]=> string(14) "OAuthException" } }
This is the code:
<?php session_start(); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>League of Socials</title>
<link rel="stylesheet" type="text/css" href="mystyle.css" />
<script type="text/javascript" src="ajax.js"></script>
</head>
<body>
<?php
$app_id = "myappid";
$app_secret = "myappsecret";
$my_url = "http://apps.facebook.com/lotusphereindia/home.php";
$dialog_url = "https://www.facebook.com/dialog/oauth?client_id=" . $app_id . "&redirect_uri=" . $my_url ."&scope=email,publish_stream";;
//this is the code that comes after oauth
$code = $_REQUEST["code"];
if(empty($code)) {//if $code is empty, it means that user is not logged in
echo "<a target='_top' href='$dialog_url'>Click here to login</a> </body></html>";
die();
}
else{
//getting the user object
$token_url = "https://graph.facebook.com/oauth/access_token?"
. "client_id=" . $app_id . "&redirect_uri=" . $my_url
. "&client_secret=" . $app_secret . "&code=" . $code;
# INSTANTIATE CURL.
$tokencurl = curl_init();
# CURL SETTINGS.
curl_setopt($tokencurl, CURLOPT_URL, $token_url);
curl_setopt($tokencurl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($tokencurl, CURLOPT_CONNECTTIMEOUT, 0);
# GRAB THE FILE.
$response = curl_exec($tokencurl);
// $response = @file_get_contents($token_url);
$params = null;
parse_str($response, $params);
$graph_url = "https://graph.facebook.com/me?access_token=" . $params['access_token'];
# INSTANTIATE CURL.
$usercurl = curl_init();
# CURL SETTINGS.
curl_setopt($usercurl, CURLOPT_URL, $graph_url);
curl_setopt($usercurl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($usercurl, CURLOPT_CONNECTTIMEOUT, 0);
# GRAB THE FILE.
$response = curl_exec($usercurl);
//$user = json_decode(file_get_contents($graph_url));
$user = json_decode($response);
$_SESSION['code'] = $code;
$_SESSION["fbid"] = $user->id;
$_SESSION["accesstoken"]= $params['access_token'];
$_SESSION["username"]=$user->name;
#adding user
require("userlogic.php");
addUser($user);
}
require("topbanner.php");
require("topmenu.php");
require("walllogic.php");
require("feedlogic.php");
var_dump($user); //used for testing purposes
?>