来自 HTML/Javascript Facebook 应用程序的警告

发布于 2024-12-09 10:24:51 字数 554 浏览 0 评论 0原文

当我将应用程序链接放入对象调试器时,我收到此警告:
无关属性 此类型的对象不允许名为 og:site_url 的属性。

我的代码中没有任何元标记。我不知道如何修复我什至没有定义的无关属性。有什么想法如何解决这个问题吗?

这是我的代码中目前调用的唯一脚本。我将所有其他内容配对,但仍然出现错误。尽管没有当我放入画布页面的链接时,仅包含指向应用程序本身的链接。

FB.init({
    appId  : '###',
    status : true, // check login status
    cookie : true, // enable cookies to allow the server to access the session
    xfbml  : true, // parse XFBML
    channelUrl  : 'mysite.com/channel.html', // Custom channel URL
    oauth : true // enables OAuth 2.0
});

When I put my application link in the Object Debugger, I get this warning:
Extraneous Property Objects of this type do not allow properties named og:site_url.

I don't have any Meta tags in my code. I don't know how to fix an extraneous property that I haven't even defined. Any ideas how to fix that?

This is the only script being called in my code right now. I paired down all the other stuff and with this I still got the error. Although not when I put in the link for the canvas page, only with the link to the app itself.

FB.init({
    appId  : '###',
    status : true, // check login status
    cookie : true, // enable cookies to allow the server to access the session
    xfbml  : true, // parse XFBML
    channelUrl  : 'mysite.com/channel.html', // Custom channel URL
    oauth : true // enables OAuth 2.0
});

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

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

发布评论

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

评论(1

长伴 2024-12-16 10:24:51

尝试将

channelUrl : 'mysite.com/channel.html'

更改为

channelUrl : '//www.mysite.com/channel.html'

参考 - http://developers.facebook.com/docs/reference/javascript/

Try changing

channelUrl : 'mysite.com/channel.html'

to

channelUrl : '//www.mysite.com/channel.html'

Ref - http://developers.facebook.com/docs/reference/javascript/

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