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.

In one of the projects which has been given to me for maintanence, I can see the following code being used to login to FaceBook using FaceBook connect.

The issue is after clicking the facebook connect button, the facebook login popup window appears and after authentication the popup window does not close and the next page will not get opened instead of the main page.

        <script type="text/javascript">
            FB.init("[app_key]", "xd_receiver.htm");
            function FBLoginPerms(apiKey, redirect){
                FB.Connect.requireSession(
                    function() {
                        FB.Connect.showPermissionDialog("email,user_photos,read_friendlists,publish_stream,user_birthday", function() {window.location = redirect;});
                    }
                );
            }


        </script>

        <a href="http://www.mydomain.com/myapp/login.php" onclick="FBLoginPerms(&#39;[app_key]&#39;,&#39;/myapp/thankyou.php&#39;); return false;">
            <img src="facebook_login.png" alt="" border="0" />
        </a>
share|improve this question
it seems that you should set redirect url – aacanakin Feb 6 '12 at 18:49
The redirect url is given while calling the following method FBLoginPerms(&#39;[app_key]&#39;,&#39;/myapp/thankyou.php&#39;); return false; – Billy Samuel Feb 6 '12 at 18:51

1 Answer

up vote 1 down vote accepted

FB.Connect is deprecated and is not supported.

http://developers.facebook.com/docs/reference/oldjavascript/

Try using the new login/logout of the new SDK

http://developers.facebook.com/docs/reference/javascript/FB.login/

share|improve this answer
Thanks DMCS. I'll have a try.. – Billy Samuel Feb 7 '12 at 2:22
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 23 '12 at 18:30
1  
Thanks DMCS. It worked. – Billy Samuel Mar 1 '12 at 11:31

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.