I am trying to use the search widget. When I search for “rainbow” I am getting results. when I search for a word in one of my client’s tweets, I get no results. I also get no results when I search for “from:GEMInews”.
I think my search should be constructed as search: ‘GEMInews thisterm’ to search for thisterm in all GEMInews tweets. Code is posted below with the following search lines changed and their results
search: 'rainbow', //Loads of results
search: 'SFDtv', // Zero results
search: 'from:GEMInews', //Zero results
<script>
new TWTR.Widget({
version: 2,
type: 'search',
search: 'from:GEMInews',
interval: 60000,
title: '',
subject: '',
width: 'auto',
height: 300,
theme: {
shell: {
background: '#ffffff',
color: '#ffffff'
},
tweets: {
background: '#ffffff',
color: '#000000',
links: '#053f8d'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: false,
timestamp: false,
avatars: false,
behavior: 'all'
}
}).render().start();
</script>
Is there perhaps a problem with way the GEMInews tweets are created? Or is there something else amiss?
P.S. I get similar results using the search form on Twitter.com