开放图谱(元)标签的名称或属性

dan*_*Mad 7 html facebook meta-tags

当我阅读Facebook关于 Open Graph 标签的文档时,我可以看到他们建议property在声明它们时使用该属性。然而,在查看MDN 对元标记的引用时,发现该property属性似乎无效。

当我观看Apple 的 Safari 15 视频时,他们建议改用该name属性。但苹果也有与此相冲突的文档

这两个例子中哪一个实际上是正确的:

<!-- Example 1 -->
<meta
  content="My Cool Title"
  name="og:title"
>

<!-- Example 2 -->
<meta
  content="My Cool Title"
  property="og:title"
>
Run Code Online (Sandbox Code Playgroud)

我应该使用我的标签name还是property与我的<meta>标签一起使用?