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('[app_key]','/myapp/thankyou.php'); return false;">
<img src="facebook_login.png" alt="" border="0" />
</a>