How do I get users' authorization to run my application and access their full name any time I need it? The following is a file included on top of all my application files. In reality, it don't even ask for users' authorization to run as other applications do (like CittyVille and others).
<?php
include_once 'facebook/facebook.php';
$facebook = new Facebook(array(
'appId' => 'APPID',
'secret' => 'APPSECRET'
));
$user = $facebook->getUser();
if($user)
{
try
{
$me = $facebook->api('/me?fields=id,name,locale');
}
catch(FacebookApiException $e)
{
error_log($e);
$user = null;
}
}
if($user)
$logoutUrl = $facebook->getLogoutUrl();
else
$loginUrl = $facebook->getLoginUrl();
Can anyone say me the right way for doing the request?