我使用会话值来设置 facebook 元标记的内容:
<meta property="og:title" content="<?php print $_GET['p']; ?>"/>
当我查看网站的源代码时,html 显示如下:
<meta property="og:title" content="Alex Atalla"/>
这意味着它成功填充了标题元标记内容中的会话值。
但是当我使用 facebook 调试器时,它会说:
Object Missing a Required Value: Object at URL 'http://www.palestinianz.com/' of type 'website' is invalid because a required property 'og:title' of type 'string' was not provided.
问题是什么 ?