使用带有方法 requests.request 的 FB.ui 会打开弹出窗口

发布于 2024-10-18 17:48:28 字数 1097 浏览 1 评论 0原文

我正在开发 Facebook IFrame 应用程序,并使用 FB.ui 使用 JS SDK 显示权限请求对话框。 这是我正在使用的代码:

FB.ui(
            {
                method: 'stream.publish',
                message: '',
                attachment: {
                    name: 'תחרות התחפושות הגדולה של לגדול',
                    caption: '',
                    media: [{ 'type': 'image', 'src': 'http://www.p-art.co.il/ligdol_purim/logo.gif', 'href': 'http://apps.facebook.com/ligdolpurim/', 'width': '101', 'height': '84'}],
                    description: ('פורים 2011'),
                    href: 'http://apps.facebook.com/ligdolpurim/'
                },
                action_links: [
                    { text: 'Ligdol Purim', href: 'http://apps.facebook.com/ligdolpurim/' }
                ],
                user_prompt_message: 'פרסם את השתתפותך בתחרות'
            },
            function(response) {
                alert(response.post_id);
            });

}

令人高兴的是,SDK 知道仅针对缺少的权限(如果有)显示对话框。问题是,在 iframe 内显示对话框之前,会弹出一个新的 IE 窗口,然后又消失。

我已经尝试了在网上找到的这段代码的几种变体,所有这些变体在显示对话框之前都会给我这个弹出窗口。

I am working on a Facebook IFrame app and using FB.ui to display the permissions request dialog using the JS SDK.
Here is the code I`m using:

FB.ui(
            {
                method: 'stream.publish',
                message: '',
                attachment: {
                    name: 'תחרות התחפושות הגדולה של לגדול',
                    caption: '',
                    media: [{ 'type': 'image', 'src': 'http://www.p-art.co.il/ligdol_purim/logo.gif', 'href': 'http://apps.facebook.com/ligdolpurim/', 'width': '101', 'height': '84'}],
                    description: ('פורים 2011'),
                    href: 'http://apps.facebook.com/ligdolpurim/'
                },
                action_links: [
                    { text: 'Ligdol Purim', href: 'http://apps.facebook.com/ligdolpurim/' }
                ],
                user_prompt_message: 'פרסם את השתתפותך בתחרות'
            },
            function(response) {
                alert(response.post_id);
            });

}

A happy surprise is that the SDK knows to show the dialog only for the missing permissions (if any). The problem is that a new IE window pops up and then disappears before the dialog is shown inside an iframe.

I have tried several variations on this code I found all over the net and all of them give me this popup before showing the dialog.

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

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

发布评论

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

评论(1

野味少女 2024-10-25 17:48:28

我没有考虑到要打开 Facebook 灯箱,您实际上需要登录 Facebook。我正在 Facebook 之外测试我的 IFrame。当我开始在页面选项卡内测试应用程序时,我得到了灯箱。你每天都会学到新东西。

I had not considered that in order to open a facebook lightbox, you actualy need to be on facebook. I was testing my IFrame outside facebook. When I began testing the app inside a page tab, I got the lightbox. Ya learn something new everyday.

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