OG:描述警告



我刚刚尝试通过OpenGraph API将我的编程笑话博客连接到Facebook。但是,当我使用开发人员调试工具进行检查时,它会发出警告:

Objects of this type do not allow properties named 'fb:description'

The parser's result for this metadata did not match the input metadata. Likely, this was caused by the data being ordered in an unexpected way, multiple values being given for a property only expecting a single value, or property values for a given property being mismatched. Here are the input properties that were not seen in the parsed result: 'fb:description'

如果我反向删除此属性,它会告诉我应该显式定义它。此警告会给我带来问题吗?

<meta property="fb:description" content="For all those people who know what C is but can still remember what fun is">

应该是

<meta property="og:description" content="For all those people who know what C is but can still remember what fun is">

关键部分是og:description

最新更新