Twitter API推文的时间范围

Tom*_*aid 9 api twitter

有没有办法使用Twitter API获取特定时间范围内的用户推文?

它似乎不在statuses/user_timeline中.

Cha*_*yan 6

您可以使用sinceuntil运算符.

https://api.twitter.com/1.1/statuses/user_timeline.json?include_entities=true&inc??lude_rts=true&screen_name=your_screen_name&since:2011-05-16&until:2011-08-16

但它会对你有所帮助,因为推文可以在很短的时间内搜索到.为了解决这个问题,请查看几个资源,

Snapbird - https://github.com/remy/snapbird

搜索旧推文的20种方式

  • 添加自从和直到不做任何事情.user_timeline仍然只返回所有最新的推文. (7认同)