2009-06-08 77 views
5

如何獲得特定推特賬戶的關注者的推文列表?我可以得到追隨者的ID的列表與此:YQL for twitter follower的推文

select id from xml where url='http://twitter.com/followers/ids/sqlservercentrl.xml' 

我的假設是,檢索鳴叫所有這些ID的話,我應該能夠編寫:

select title from twitter.user.timeline 
where id in (select id from xml where url='http://twitter.com/followers/ids/sqlservercentrl.xml') 

,但我只是得到沒有結果。

- 比較下面的查詢,它得到朋友的鳴叫(誰我跟隨,而不是誰在追隨我),沒有問題:

select title from twitter.user.timeline 
where id in (select id from xml where url='http://twitter.com/statuses/friends/sqlservercentrl.xml' and itemPath='users.user') 

回答

2

您是否嘗試過加入itemPath標準是什麼?

select title from twitter.user.timeline 
where id in (select id from xml where url='http://twitter.com/followers/ids/sqlservercentrl.xml' and itemPath='ids')