I don't know why I'm getting this error: Fatal error: Uncaught OAuthException: An active access token must be used to query information about the current user.
I know one normally should use access tokens for this, but in the facebook api it clearly says:
*no access_token for publicly available data: uid, name, first_name, middle_name, last_name, sex, locale*
So they say you don't need the access token for Locale and that's just what I need. Please take your time to read my code:
// create the Facebook Graph SDK object
require_once('facebook.php');
$facebook = new Facebook(array(
'appId'=>'273312646075066', // replace with your value
'secret'=>'7a34df58fad450648249634c81ec17c5' // replace with your value
));
echo "<body>";
// Show the content for the person who liked the page
$user = $facebook->getUser();
$user_profile = $facebook->api('/me');
//setting the language variables
$fr = 'fr';
$nl = 'nl';
//setting the right content according to the language
if(stristr($user_profile['locale'],$nl))
{
$lang = "NL";
$_SESSION['lang']=$lang;
include "form.php";
}
?>
Thanks in advance!
EDIT: I failed to mention that this should be without the auth process (the approve app). Client's wishes