来自 HTML/Javascript Facebook 应用程序的警告
当我将应用程序链接放入对象调试器时,我收到此警告:
无关属性 此类型的对象不允许名为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将
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/