The search widget i generated shows only the top tweets. I want it to show all tweets, but I can’t figure out how to do it.
Right now it shows:
https://twitter.com/#!/search/dedemsvaria
I want it to show:
https://twitter.com/#!/search/realtime/dedemsvaria
The code that i’m using:
new TWTR.Widget({
version: 2,
type: 'search',
search: 'dedemsvaria',
interval: 30000,
title: '',
subject: '',
width: 214,
height: 300,
theme: {
shell: {
background: '#67c8e8',
color: '#ffffff'
},
tweets: {
background: '#ffffff',
color: '#444444',
links: '#1985b5'
}
},
features: {
scrollbar: true,
loop: false,
live: true,
behavior: 'all',
}
}).render().start();