FB.ui 无法在 IE 上运行

发布于 2024-12-02 06:39:19 字数 515 浏览 1 评论 0原文

我迫切需要帮助,自从我尝试解决这个问题以来已经一周了,我在 FireFox 和 Chrome 中调用 FB.ui 没有任何问题,但是当我尝试使用 IE 时,它没有出现 Facebook 对话框。实际上代码是这样的:

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);
}

请,欢迎任何帮助

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 is 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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的往事 2024-12-09 06:39:19

可以尝试一下:

displayMode =“popup”;

看起来 IE 和 FB.ui http://bugs.developers 存在错误

。 facebook.net/show_bug.cgi?id=17565

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文