Hi guyes
I am trying to embed twitter Feeds on a website. The easiest way to do so was with the widget. But I cant figure out how to up the widget so older tweets will be shown also. Like lets say allways show me the latest 20 Tweets.
I do have this code
new TWTR.Widget({
version: 2,
type: 'search',
search: 'from:defactoCH OR to:defactoCH',
interval: 60,
title: '',
subject: '',
width: 270,
height: 400,
theme: {
shell: {
background: '#8ec1da',
color: '#ffffff'
},
tweets: {
background: '#ffffff',
color: '#444444',
links: '#1985b5'
}
},
features: {
scrollbar: false,
loop: true,
live: true,
hashtags: true,
timestamp: true,
avatars: true,
toptweets: true,
behavior: 'default'
}
}).render().start();
During my google search I could not find anything that helped me. I still would like to have the behavior so the tweets will float in. Is this possible?
Thank you so much for your help.
Rilana