im trying to iplement twitter @anywhere , to detect current twitter user info ,
twttr.anywhere(function(T){
if (T.isConnected()) {
currentUser = T.currentUser;
screenName = currentUser.data('screen_name');
alert(screenName);
return true;
}
else {
return false;
};
});
when loading page i get in console : "Unsafe JavaScript attempt to access frame with URL https://api.twitter.com/xd_receiver.html from frame with URL about:blank. Domains, protocols and ports must match."
i've checked the Registered Callback URL and it's ok , everything should work ok ,
any idea what's wrong ?
tnx