user a - Admin for the app Running the app on HTTP
getUser() is giving the user id
user b - not the admin Running the app on HTTP
getUser() is giving zero and the URL is like this &error_reason=user_denied&error=access_denied&error_description=The+user+denied+your+request.&state=32423dfs23423dsaaw#=
Below is the code user for auth the user,
$facebook = new Facebook(array(
'appId' => '',
'secret' => '',
'cookie' => true
));
$user = $facebook->getUser();
$loginUrl = $facebook->getLoginUrl(
array(
'scope' => 'publish_stream,email',
'redirect_uri' => 'https://www.facebook.com/pages/test?sk=app_23423423'
)
);
if (!$user) {?>
<a href="<?php echo $loginUrl ?>">Facebook Login</a>
else
{
echo "<script type='text/javascript'>location.href = 'test.php?Id=$user'</script>";
}
}