Sharethis Twitter 分享图片未加载
Sharethis Twitter share image not loading
当使用 Sharethis 从我的网站分享 post 时,Twitter 分享按钮无法为 post 抓取动态生成的图像。我还使用“twitter:image”将 link 包含在头部图像中,但问题似乎仍然存在。知道如何解决这个问题吗?
这是 Django 中 Twitter 元标记的示例:
中间位置:
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:description" content="Place your card description here"/>
<meta name="twitter:title" content="Card TITLE here"/>
<meta name="twitter:image" content="{{SITE_PROTOCOL_URL}}{% static 'location of the image in static files' %}"/>
其中 SITE_PROTOCOL
context = {
'SITE_PROTOCOL_URL': request._current_scheme_host,
}
在这个LINK中你可以找到twitter card validator debugger
本例中 twitter:image 的内容 url 为:
https://your-site.com/media/your_image_name.jpg
希望能帮到你。
请注意,这仅适用于“实时网络”环境
当使用 Sharethis 从我的网站分享 post 时,Twitter 分享按钮无法为 post 抓取动态生成的图像。我还使用“twitter:image”将 link 包含在头部图像中,但问题似乎仍然存在。知道如何解决这个问题吗?
这是 Django 中 Twitter 元标记的示例:
中间位置:
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:description" content="Place your card description here"/>
<meta name="twitter:title" content="Card TITLE here"/>
<meta name="twitter:image" content="{{SITE_PROTOCOL_URL}}{% static 'location of the image in static files' %}"/>
其中 SITE_PROTOCOL
context = {
'SITE_PROTOCOL_URL': request._current_scheme_host,
}
在这个LINK中你可以找到twitter card validator debugger
本例中 twitter:image 的内容 url 为:
https://your-site.com/media/your_image_name.jpg
希望能帮到你。
请注意,这仅适用于“实时网络”环境