用于发布到 Wall 的 Facebook Javascript UI 只是闪烁

发布于 2024-10-29 05:04:00 字数 788 浏览 2 评论 0原文

我试图让 Facebook 对话在用户完成一个事件时出现,所以我构建了这个功能。

function post_to_wall_popup(){
            FB.init({ apiKey: 'Super Secret API Key' });
            var publish = {
                method: 'stream.publish',
                attachment: {
                    name: 'XYZ',
                    caption: 'caption here',
                    description: ('description'),
                    href: 'url',
                media: [{
                    type: 'image',
                    href: 'url',
                    src: 'xyz.gif'
                }]
                },
                action_links: [{ text: 'XYZ', href: 'url' }]
            };  

            FB.ui(publish,null);


    }

我尝试了几个不同的示例,这些示例应该具有类似的结果,但在每个示例中,我得到的只是带有“正在加载..”的对话框,一瞬间,然后它就消失了。 还有其他人遇到过类似的问题吗?

I am trying to make a Facebook dialogue appear when the user completes an event and so I built this function.

function post_to_wall_popup(){
            FB.init({ apiKey: 'Super Secret API Key' });
            var publish = {
                method: 'stream.publish',
                attachment: {
                    name: 'XYZ',
                    caption: 'caption here',
                    description: ('description'),
                    href: 'url',
                media: [{
                    type: 'image',
                    href: 'url',
                    src: 'xyz.gif'
                }]
                },
                action_links: [{ text: 'XYZ', href: 'url' }]
            };  

            FB.ui(publish,null);


    }

I have tried a few different examples that are supposed to have similar results but on each one all I get is the dialog box with "Loading.." for a split second, then it disappears.
Has anyone else ever come across a similar problem?

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

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

发布评论

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

评论(1

一口甜 2024-11-05 05:04:00

确保 fb-root 已定义 &可见的。

Make sure that fb-root is defined & visible.

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