12

在一个网站上,我需要它来显示来自一个帐户的最新推文。

以前,转到 Twitter 的 Goodies 页面并限制为一条推文即可完成此操作。现在有新版本的时间线嵌入似乎没有这个选项,那么它是如何实现的呢?我可以使用我保存的旧版本 1 嵌入,但根据 Twitter 常见问题解答,所有旧版本明年都将停止工作,所以想使用新版本 1.1 代码..

以下是 Twitter 提供的新代码。只需要知道如何/在哪里添加“count = 1”,就像使用原始版本一样。

<a class="twitter-timeline" href="https://twitter.com/example" data-widget-id="0000000000">Tweets by @example</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
4

2 回答 2

28

这是显示最新的 n 条推文的方法。只需更改 data-tweet-limit 中的值。

<a class="twitter-timeline" href="https://twitter.com/twittername" data-tweet-limit="1"> Tweets by @twittername</a> <script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

于 2016-11-28T21:06:07.050 回答
0
  jQuery(function($){
    $(".tweet").tweet({
      join_text: "auto",
      username: "seaofclouds",
      avatar_size: 48,
      count: 3,
      auto_join_text_default: " we said, ",
      auto_join_text_ed: " we ",
      auto_join_text_ing: " we were ",
      auto_join_text_reply: " we replied ",
      auto_join_text_url: " we were checking out ",
      loading_text: "loading tweets..."
    });
  });

更多选项请点击这里

于 2012-10-15T00:14:23.267 回答