从过去两天开始,我的Facebook应用程序显示了一些奇怪的文字,例如我的应用程序的使用故事提要:
此故事无效,原因是:http://apps.facebook.com/socialrecruit/处的对象没有标题
是什么原因?
答案 0 :(得分:2)
我遇到了同样的问题。我通过删除HTML文件中的额外标记解决了这个问题。 额外的标签是:
<?xml version="1.0" encoding="utf-8" ?>
我现在的HTML标题是:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
这对我来说很有用,错误也消失了。
答案 1 :(得分:1)
我有解决方案。将头标记更改为
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#">
并添加以下元标记。
<meta property="og:type" content="other">
<meta property="og:title" content="Social Recruit">
<meta property="og:url" content="https://apps.facebook.com/socialrecruit/">
<meta property="og:image" content="http://thesocialrecruit.com/fb/images/main_app_image.png">
<meta property="og:site_name" content="Social Recruit">
<meta property="fb:app_id" content="APP_ID">
您可能需要等待几个小时才能进行更改。
答案 2 :(得分:0)
对我来说,只需在head
部分添加标题标记即可解决问题:
<head>
...
<title>
My App Title
</title>
...
</head>
就是这样......我希望这会有所帮助。