I am getting the following error using the Facebook JDK for Login, pretty sure this has only just started happening within the last 1 or 2 days, is anybody experiencing this aswell? Here is my JS code and then Error
FB.getLoginStatus(function(response) {
if (response.authResponse) {
//Fire Login Ajax
} else {
FB.login(function(response) {
if (response.authResponse) {
FB.api('/me', function(response) {
//Fire Login Ajax
});
}
});
}
});
Uncaught Error: No polyfill registered for object
q all.js:24
FB.subclass.process all.js:118
FB.provide._processElement.processor all.js:82
FB.provide._processElement all.js:82
FB.provide.parse all.js:82
q all.js:24
FB.provide.parse
.toLowerCase(). This makes the key value'object'rather than'Object'so the element is not found and the exception is thrown. – Phil Booth May 9 '12 at 10:14toLowerCase()when populating the array (some of the other keys are in lower case), or remove thetoLowerCase()when accessing, not sure which. Either way, doesn't seem like a difficult fix, hopefully it gets sorted out soon. :) – Phil Booth May 9 '12 at 10:16