开发者

FB.ui not working on IE

开发者 https://www.devze.com 2023-04-01 16:36 出处:网络
I need help desesperately, it\'s been a week since I\'m stuck trying to resolve this problem, I call FB.ui in FireFox and Chrome without any problem, but when I try with IE it doesn\'t appear the Face

I need help desesperately, it's been a week since I'm stuck trying to resolve this problem, I call FB.ui in FireFox and Chrome without any problem, but when I try with IE it doesn't appear the Facebook dialog. Actually the code i开发者_如何学运维s like this:

function inviteFriends(myMessage) {
    var obj = {
        method: 'apprequests',
        message: myMessage,
        icon: 'http://www.mywebsite.com/logo.jpg',
        data: 'tracking information for the user'
    };

    FB.ui(obj, callbackInvite);
}

var callbackInvite = function(response) {
        document["flashContent"].InvitedFriends(response);
}

Please, any help will be welcomed


Might try this out:

displayMode = "popup";

Looks like there's a bug with IE and FB.ui

http://bugs.developers.facebook.net/show_bug.cgi?id=17565

0

精彩评论

暂无评论...
验证码 换一张
取 消