Currently trying to launch a web site with facebook signin...
It had been working across all platforms, we're currently encountering a problem when users try to sign in using windows phone. It seems to encounter some sort of javascript error. The javascript incorporating facebook into the site looks something like this...
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1&appId=@ViewBag.FacebookAppID";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk')
);
function dofblogin()
{
FB.login(function (response) {
if (response.authResponse) {
facebook_token = response.authResponse.accessToken; //Security token used for API calls to facebook
facebook_id = response.authResponse.userID;
$("#UrlTagID").val(facebook_token);
FB.api('/me', function (response) {
$("#FirstName").val(response.first_name);
$("#LastName").val(response.last_name);
$("#EmailAddress").val(response.email);
$("form").first().submit();
});
} else {
}
}, { scope: 'email,publish_stream'}); // <- Required to get email and post on behalf
}
..Edit...
Forgive me I was quite weary when I first posted this.
I got this error in IE after setting my user agent string to
Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; SAMSUNG; SGH-i917)
The call stack is as follows ...
setLoadedNode
popup
touch
m
login
Anonymous Function
Anonymous Function
dofblogin
onclick
i.e. started at Onclick... error occurs in setLoadedNode which is in facebook's javascript...
http://connect.facebook.net/en_GB/all.js#xfbml=1&appId={Your app ID}
the part of code it stops at looks like...
if(da.params&&da.params.display!='popup')ea.fbCallID=da.id;
fbCallID is undefined....
All of that is probably as helpful as "some sort of javascript error".
some sort of javascript error. Do you have the error description? – JScoobyCed Feb 24 at 6:58