Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.