4

我在 twitter 上分享一个 url http://www.aao.org/eye-on-advocacy-article/key-congressional-committee-opposes-part-b-demo没有任何og:image元标记,因为没有图像呈现这篇文章。

但是在 twitter 上共享 url 时,它需要一个默认的占位符图像,实际上是一个 twitter 图像https://ton.twimg.com/tfw/assets/link_v1_e64f66f5650df987d97cc5f00c4cb5987f367028.svg与共享链接一起显示,但它应该在全部。 在推特上分享时的当前结果

我用于此页面的 twitter 元标记是:

<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="American Academy of Ophthalmology">
<meta name="twitter:title" content="Key Congressional Committee Echoes Academy’s Opposition to Medicare’s Proposed Part B Drug Demonstration">
<meta name="twitter:description" content="Our friends in Congress are pressuring CMS to change planned initiative that would hurt our ability to care for ophthalmology’s patients">
<meta name="twitter:creator">

and some other og meta tags

谁能建议我可以在页面中添加或删除什么,以便在 Twitter 上共享时没有占位符图像显示?

4

1 回答 1

0

Twitter 不允许文章没有缩略图,因此您需要添加缩略图以删除默认缩略图。

尝试这个:

<meta
    name="twitter:image"
    content="image url here"
  />

// If the above doesn't work

<meta
    name="og:image"
    content="image url here"
  />

如果需要,您还可以将图像设置为空白图像(白色背景或完全透明)

于 2021-01-03T08:35:27.077 回答