gpt4 book ai didi

javascript - fb.init fb 未定义

转载 作者:行者123 更新时间:2023-12-02 23:18:42 28 4
gpt4 key购买 nike

我有一个简单的视频,最后包含一个共享按钮,当用户单击共享按钮时,会打开一个带有社交媒体图标的模态框,例如用户可以将视频共享到 Facebook,现在我想要来自 Facebook 的回调响应视频分享后。

这是我到目前为止所尝试过的。

FB.init({appId: "YOUR_APP_ID", status: true, cookie: true});

FB.ui({
method: 'feed',
link: "http://...",
name: "Some Title",
caption: "Some Caption",
description: "Some Description",
display: "popup",
Video: "http://..."
}, function(response) {
if (response && response.post_id) {
alert('Post was published.');
} else {
alert('Post was not published.');
}
});

不幸的是,我收到以下错误

fb.init fb is not defined

我做错了什么???

最佳答案

我猜您没有导入您正在使用的实际库。我建议在这里看看如何做到这一点:https://developers.facebook.com/docs/javascript/quickstart

我还注意到您以大写形式列出代码(FB.init...),而您的错误则以小写形式列出(fb.init... )。确保您使用的大小写与导入时使用的大小写相同。

关于javascript - fb.init fb 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57047807/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com