该故事已无效,因为: app_url 处的对象没有标题

发布于 2024-12-03 11:20:33 字数 320 浏览 1 评论 0原文

从过去两天开始,我的 Facebook 应用程序显示了一些奇怪的文本,例如我的应用程序的使用故事提要中的文本:

此故事无效,因为: http://apps.facebook.com/socialrecruit/ 没有标题

是什么原因?

From the last two days, my Facebook application showed some weird text like on my application's usage story feeds:

This story was invalidated because: The object at http://apps.facebook.com/socialrecruit/ doesn't have a title

What is the reason?

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

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

发布评论

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

评论(3

寄与心 2024-12-10 11:20:33

我也有同样的问题。我通过删除 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">

这对我来说很有效,错误消失了。

I had the same problem. I solved it by removing an extra tag I had on my HTML file.
The extra tag was:

<?xml version="1.0" encoding="utf-8" ?>

The HTML header I now have is:

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">

This did the trick for me, and the error disappeared.

八巷 2024-12-10 11:20:33

我已经找到解决办法了。将 head 标签更改为

<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">

您可能需要等待几个小时才能发生更改。

I have got the solution. Change the head tag to

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#">

and add following meta tags.

<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">

You might need to wait for couple of hours for the changes take place.

眼前雾蒙蒙 2024-12-10 11:20:33

对我来说,只需在 head 部分添加标题标签即可解决问题:

<head>
   ...
   <title> 
        My App Title
   </title>
   ...
</head>

就是这样......我希望这有帮助。

For me the problem was solved just by adding a title tag in the head section:

<head>
   ...
   <title> 
        My App Title
   </title>
   ...
</head>

That's it... I hope this helps.

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