Hello,
Our client’s Twitter widget has stopped loading. The code seems to be fine, so I’m wondering if the version is no longer supported. The widget is embedded in a simple html page. Here’s the appropriate code:
<div id="video">
<div id="vidframe">
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 3,
interval: 6000,
width: 295,
height: 300,
theme: {
shell: {
background: '#87b3c7',
color: '#ed173b'
},
tweets: {
background: '#f7f4f7',
color: '#000000',
links: '#231deb'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('fishbarchicago').start();
</script>
</div>
</div>