作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Tumblr API 确实令人印象深刻,因为它允许我直接在博客中发布内容。不过,我也想为 Twitter 卡片添加 meta
。有什么办法可以实现吗?
client = pytumblr.TumblrRestClient(
app.config['CONSUMER_KEY'],
app.config['CONSUMER_SECRET'],
app.config['OAUTH_TOKEN'],
app.config['OAUTH_SECRET'],
)
if news.is_published:
body = ''
if news.image_url_list and len(news.image_url_list) > 0:
body = '<img src="{0}" /><br/>'.format(news.image_url_list[0])
slug = Slugify.slugify(news.head_line)
post = client.create_text("xxx.tumblr.com",
state="published",
tags=news.tag_list,
format='html',
slug=slug,
title=news.head_line,
body=body + news.summary.encode('utf-8'))
如何将这些元标记添加到博文中?
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@flickr" />
<meta name="twitter:title" content=? news.head_line ? />
<meta name="twitter:description" content=? news.description ? />
<meta name="twitter:image" content=? news.image_url_list[0] ? />
最佳答案
Tumblr API 不支持向帖子添加任意元数据,但您可以通过重用已存储在 Tumblr 中的内容,将您想要的 meta
HTML 元素添加到为访问者提供的博客帖子输出中,并且添加适当的 Tumblr 标记。
转到 Tumblr,你的帐户,你的 Tumblr 博客,“编辑外观”,“编辑主题”,“编辑 HTML”,并添加一个仅在帖子页面上执行的输出 block :
<html>
<head>
<!-- ... -->
<!-- Only show on permalink pages (blog post) -->
{block:PostTitle}
<!-- Iterate over all post types -->
{block:Posts}
<!-- For Link posts, output this -->
{block:Link}
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@example" />
<meta name="twitter:title" content="{Name}" />
<meta name="twitter:description" content="{Description}" />
<meta name="twitter:image" content="{Thumbnail-HighRes}" />
{/block:Link}
{/block:Posts}
{/block:PostTitle}
<!-- ... -->
</head>
<body>
<!-- ... -->
</body>
</html>
您需要添加额外的{block:Something}
Tumblr template tags对于每种帖子类型。此示例将仅支持链接帖子。
关于python - 如何将元标记添加到 Tumblr API 的博客标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31662836/
我是一名优秀的程序员,十分优秀!