代码之家  ›  专栏  ›  技术社区  ›  Andrew

如何通过“用户名”查询获取Twitter订阅源?

  •  5
  • Andrew  · 技术社区  · 15 年前

    我目前有以下网址,但它搜索的关键字,而不仅仅是用户饲料。

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

    我希望我的用户能够只提供那里的用户名,并在他们的配置文件上显示一个提要。

    我应该使用什么URL来获取包括旧文章在内的用户源?

    1 回复  |  直到 15 年前
        1
  •  21
  •   Jamie Dixon    15 年前

    我想你要找的是:

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

    其中%user id%是相关用户的ID。

    例如,我自己的时间线的URL是:

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

    我的用户名是16979198。

    更新

    根据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

    推荐文章