I have integrated Facebook Connect to my website by using PHP SDK 3 which uses Graph API
exactly like this post
ok...
The php for login url is
$loginUrl = $facebook->getLoginUrl(
array(
'scope' => 'email,publish_stream',
'redirect_uri' => $fbconfig['baseurl']
)
);
<a href="<?=$loginUrl?>">Facebook Login</a>
just i have 1 problem and i try to find solution for it :
If the visitor is trying to login but he is not register to my APP
facebook will redirect him to example.php page without asking him to accept my App and register
in other words i only need to let my current user to path from the Fblogin url and if he
not a user then i will redirect him to other page without asking hem to register for myApp
Could anyone help me please ?
Thanks