I'm trying to make a JavaScript login from my iPhone 4 running Chrome for iOS version 26.0.1410.53, but I get an error message as shown below.
Here's the live URL for replication on iPhone - http://mni.me/master
- Click "Get Your Homepage Like This"
- Click "Sign in with Facebook"
Here is my javascript
FB.getLoginStatus(function(r) { if (r.status !== 'connected') { FB.login(function (response) { if (response.authResponse) { console.log('Welcome! Fetching your information.... '); } else { console.log('User cancelled login or did not fully authorize.'); } }); } else { console.log("User alredy connected with FB app. Checking if user is in DB"); var url = 'api/isUser.php?fid='+r.authResponse.userID; isUser(url); } });
It works fine on Chrome for Desktop, but I get this error on the iPhone ... 
What is the problem and how to fix it?
google-chrome iphone facebook
Jacques Blom
source share