如何通过“用户名”查询获取Twitter Feed?

时间:2009-11-16 21:16:03

标签: twitter-feed

我目前拥有以下网址,但它会搜索关键字而不仅仅是用户Feed。

  

http://search.twitter.com/search.atom?q=from%3AUSERNAME

我希望我的用户只能提供用户名,并在其个人资料中显示Feed。

我应该使用什么网址来获取包含旧帖子的用户Feed?

1 个答案:

答案 0 :(得分:21)

我认为您正在寻找的是:

http://twitter.com/statuses/user_timeline/%USERID%.rss

其中%USERID%是相关用户的ID。

例如,我自己的时间轴的网址是:

http://twitter.com/statuses/user_timeline/16979198.rss

以16979198为我的用户ID号。

<强>更新

根据Twitter API,您也可以使用用户名进行相同操作,如下所示:

http://twitter.com/statuses/user_timeline/%USERNAME%.rss

%USERNAME%是您要查看的人的用户名。

例如:

http://twitter.com/statuses/user_timeline/jamiedixon.rss

您还可以将链接的.rss部分替换为其他数据类型,例如.json .atom

有关Twitter API和时间表的更多信息,请访问:

http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-user_timeline