特定のTwitterアカウントのフォロワーのツイートのリストを取得するにはどうすればよいですか?これでフォロワーのIDのリストを取得できます:
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')