Twitter Feed无法运行javascript

时间:2013-07-28 01:27:00

标签: javascript html twitter

我有一个javascript片段,用于在我的网站上获取我的Twitter Feed。我调用javascript所在的文件,然后在代码中引用它。最近,我一直无法获取信息。它只是空白。任何帮助都会很棒!

这是javascript:

function AddTweet(TU,NP){
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: NP,
  interval: 30000,
  width: 'auto',
  height: 'auto',
  theme: {
    shell: {
      background: 'none'
    },
    tweets: {
      background: 'none'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: false,
    behavior: 'all'
  },
  ready: function() {
    setTimeout(init_sticky_footer, 1000);
  }
}).render().setUser(TU).start();
}

这是HTML:

<html>
<head>
<script type="text/javascript" src="/layout/plugins/tweet/tweet.widget.js"></script>
</head>
<body>

<div class="column">

                            <h3>Latest Tweets</h3>

                            <div class="block_footer_tweets">
                                <script type="text/javascript">
                                    // ('YOUR USERNAME','NUMBER OF POSTS');
                                    AddTweet('Bookerhighvpa', 2);
                                </script>
                            </div>
                        </div>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

五周前,Twitter退出旧的v1 API,所以你应该使用新的。

<a class="twitter-timeline" href="https://twitter.com/twitterapi" tweet-limit="2" data-widget-id="YOUR-WIDGET-ID-HERE">Tweets by @twitterapi</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>