Hi,
I seem to be having a problem displaying my latest tweets via the Twitter widget on my portfolio website. I’m testing the website on a server and NOT a local server. I got the code from the Twitter website, but the thing that confuses me is the widget works when I test the widget using one of my 3 friends username (sociallyinept, astonl and njsamari). The following code is the code I have been implementing into my website.
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 3,
interval: 30000,
width: 390,
height: 100,
theme: {
shell: {
background: '#854b4b',
color: '255'
},
tweets: {
background: '#b833b8',
color: '#b32eb3',
links: '#634563'
}
},
features: {
scrollbar: true,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: true,
behavior: 'default'
}
}).render().setUser('jekelly90').start();
</script>
Is there anything I need to adjust/set on my Twitter profile in order for the Twitter widget to display my latest tweets?
Thanks,
Jack