0

我正在使用 twitter 小部件,如下所示。

<script src="//widgets.twimg.com/j/2/widget.js"></script>
            <script>
            new TWTR.Widget({
              version: 2,
              type: 'search',
              search:'#xxx',
              rpp: 10,
              interval: 1000,
              title: 'Recent Tweets ',
              width: 234,
              height: 330,
              theme: {
                shell: {
                  background: 'none',
                  color: '#555555'
                },
                tweets: {
                  background: 'none',
                  color: '#666',
                  links: '#01972e'
                }
              },
              features: {
                scrollbar: true,
                loop: false,
                live: true,
                hashtags: true,
                timestamp: true,
                avatars: true,
                behavior: 'all'
              }
            }).render().start();
            </script>

这给了我最好的结果,而不是全部。如果我去我的推特帐户并搜索#xxx,我会在顶部结果下获得三条推文,并且在查看全部下获得更多。顶部结果下的这三个是我在使用上面的代码时得到的。

我试图查看记录在案的 widget.js 但没有找到这个选项。

4

0 回答 0