[twitter-dev] How can I perform a search within my followers only?

2009-12-26 Thread humbucker
Hi!

I would like to use the twitter search api to display tweets
containing a #hashtag BUT from my followers only,  I can't find this
option, is it possible friends? how?

Quich other question, when I perform the request below asking 50
returns, I only get 10 or 12 at first and then the other ones show up,
is it somehow a limit??

http://search.twitter.com/search.json?q=%23designrpp=50callback=?


Many thanks for your help.


Re: [twitter-dev] How can I perform a search within my followers only?

2009-12-26 Thread Abraham Williams
On Sat, Dec 26, 2009 at 11:14, humbucker oursystemfai...@gmail.com wrote:

 Hi!

 I would like to use the twitter search api to display tweets
 containing a #hashtag BUT from my followers only,  I can't find this
 option, is it possible friends? how?


You will have to acquire the statuses of the followers and filter for the
desired results on your own server. Have a look at the streaming API or
merge the user_timeline of each follower into a single thread.


 Quich other question, when I perform the request below asking 50
 returns, I only get 10 or 12 at first and then the other ones show up,
 is it somehow a limit??

 http://search.twitter.com/search.json?q=%23designrpp=50callback=?


I am seeing 50 results as expected.



 Many thanks for your help.


Abraham

-- 
Abraham Williams | Awesome Lists | http://awesomeli.st
Project | Intersect | http://intersect.labs.poseurtech.com
Hacker | http://abrah.am | http://twitter.com/abraham
This email is: [ ] shareable [x] ask first [ ] private.
Sent from Bloomington, IN, United States


Re: [twitter-dev] How can I perform a search within my followers only?

2009-12-26 Thread TJ Luoma
On Sat, Dec 26, 2009 at 12:14 PM, humbucker oursystemfai...@gmail.com wrote:
 Hi!

 I would like to use the twitter search api to display tweets
 containing a #hashtag BUT from my followers only,  I can't find this
 option, is it possible friends? how?

 Quich other question, when I perform the request below asking 50
 returns, I only get 10 or 12 at first and then the other ones show up,
 is it somehow a limit??

 http://search.twitter.com/search.json?q=%23designrpp=50callback=?

I setup a cron job on a Unix server which sent my timeline to me every
5 minutes and sent them all to a special Gmail account.  Then I could
search my followers using Gmail.

There's no way to do it via search.twitter.com

TjL