-2

在我的网站中,推特提要没有显示推文。但它在本地主机上运行良好。当它上传到服务器时会出现问题。有人可以帮我吗?这是代码

<a class="twitter-timeline" width="230" height="300" href="https://twitter.com/myusername" data-widget-id="MY WIDGET ID" >Tweets by @username</a>

 <script>
!function(d,s,id)
{
var js,fjs=d.getElementsByTagName(s)[0];
if(!d.getElementById(id))
{
js=d.createElement(s);j
s.id=id;
js.src="//platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js,fjs);
}
}
(document,"script","twitter-wjs");
</script>

我还使用了另一个代码,它可以在服务器上运行,但不显示推文中的图片。它显示了特定图片的链接。这是代码。

<script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script>

<script>
new TWTR.Widget({
         version: 2,
         type: 'profile',
         rpp: 4,
         interval: 2000,
         width: 230, //we've changed our default width, to make it prettier
         height: 300,
         theme: {
               shell: {
                 background: 'transparent', //this is important
                 color: 'rgb(255, 103, 0);'
               },
               tweets: {
                 background: 'transparent', //this is important
                 color: '#aba2a2',
                 links: '#ccc'
               }
         },
         features: {
               scrollbar: false,
               loop: true,
               live: true,
               hashtags: true,
               timestamp: true,
               avatars: true,
               behavior: 'default'
         }

       }).render().setUser('user').start();
</script>

是否有任何设置可以在推文上显示图片?

4

1 回答 1

0

公共领域需要在时间线配置部分指定 https://dev.twitter.com/docs/embedded-timelines

于 2012-12-29T05:36:46.483 回答