In the past few days, our website widget seems to have stopped working (at http://iagsdc.org). It was showing tweets until recently; now the widget just displays an emptry frame. Here’s the code we’ve been using:
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 6000,
width: 200,
height: 250,
theme: {
shell: {
background: '#8ba5e8',
color: '#080642'
},
tweets: {
background: '#faf5fa',
color: '#0a090a',
links: '#d11963'
}
},
features: {
scrollbar: false,
loop: false,
live: true,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('iagsdc').start();
</script>
Can anyone help please? I generated this code from the Twitter site, but I have no idea how is works. I know nothing about the API.