如何将自定义推文添加到 Tumblr API?

How to add a custom tweet to Tumblr API?

我有以下代码 post 通过 Tumblr API 在 Tumblr 上写博客 API。

 post = client.create_text("xxx.tumblr.com",
                                      state="published",
                                      tags=utag_list,
                                      format='html',
                                      tweet=tweet.encode('utf-8'),
                                      slug=sluged_header,
                                      title=news.head_line.encode('utf-8'),
                                      body=body)

奇怪的是 tweet 参数没有做任何事情。

查看我的博客源,我可以看到:

<li><a href="https://twitter.com/intent/tweet?text=Teenagers%20rescue%20elderly%20couple%20from%20sinking%20after%20car%20crashes%20into%20lake%20-%20Teenage%20wind-surfing...%20http%3A%2F%2Ftmblr.co%2FZ_F3uj1qlCL9u" class="share-item twitter" target="_blank">Tweet</a></li>

这是生成的默认推文消息。不知何故,我的自定义推文消息被完全忽略了。而不是在源代码中生成。因此,推文共享看不到自定义消息。有什么建议吗?

我找到了解决方案。发生这种情况是因为推文略多于 140 个字符,并且在没有引发任何进一步异常的情况下被忽略。

Tumblr 团队confirmed已解决此错误,将在内部提出并修复。

同时确保推文 100% 少于 140 个字符。