I've got a strange problem. I've programened an facebook app where the user has to connect. when clicking the submit-button the JS has to check if the user has the requested permissions and (if not) requires a connection for the user. This is done via FB.api('/me/permissions', function(response){ }); and FB.Login(); where FB.Login() is fired in the permissionsCheck when the needed permissions aren't granted...
This script works in all Browsers well ... expected Safari! In Safari eh FB.Login()-Function calls via Network the following URL...
http://www.facebook.com/dialog/oauth?api_key=369743*&app_id=369743**&channel_url=https%3A%2F%2Fs-static.ak.fbcdn.net%2Fconnect%2Fxd_proxy.php%3Fversion%3D3%23cb%3Dfdcdafb0%26origin%3Dhttp%253A%252F%252Fmypage.com%252Ffb3ecf95c%26relation%3Dparent.parent%26transport%3Dpostmessage&client_id=36974***&display=none&domain=mypage.com&locale=de_DE&origin=1&redirect_uri=https%3A%2F%2Fs-static.ak.fbcdn.net%2Fconnect%2Fxd_proxy.php%3Fversion%3D3%23cb%3Df35bd9f80c%26origin%3Dhttp%253A%252F%252Fdev.howoge.mb005.de%252Ffb3ecf95c%26relation%3Dparent%26transport%3Dpostmessage%26frame%3Df50f3d2e8&response_type=token%2Csigned_request%2Ccode&sdk=joey
... and gets redirected to an empty frame with the following source:
When I start the FB.Login() function via console I get the Login Popup perfectly .... -.- So whats the Problem? Why does Facebook doesnt show the Popup via script and (internal) redirects to an error page instead of displaying me the popup (like I called via console)???
I hope somebody may help out. Thanks in advance :)