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')