在TweetSharps ListTweetsOnSpecifiedUserTimeline中使用max_id进行分页与镜像

时间:2013-01-10 02:37:13

标签: tweetsharp

http://dev.twitter.com/docs/working-with-timelines推特的“使用时间轴”文档中,建议使用max_id参数进行游标,而不是试图逐页浏览时间轴。查看Twitter API方法GET statuses/user_timeline http://dev.twitter.com/docs/api/1.1/get/statuses/user_timeline的文档,有一个可选的max_id参数,没有page参数,以及其他有用的参数,例如include_rts转推。但TweetSharp方法ListTweetsOnSpecifiedUserTimeline的重载仅包括page而不包括max_id。是否可以使用TweetSharp使用光标方法(而不是分页)检索指定的用户时间轴,如果是这样的话?

1 个答案:

答案 0 :(得分:0)

找到它。它作为一个单独的方法包含在TweetSharp中:IEnumerable<TwitterStatus> ListTweetsOnSpecifiedUserTimelineBefore(string screenName, long maxId);