在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使用光标方法(而不是分页)检索指定的用户时间轴,如果是这样的话?
答案 0 :(得分:0)
找到它。它作为一个单独的方法包含在TweetSharp中:IEnumerable<TwitterStatus> ListTweetsOnSpecifiedUserTimelineBefore(string screenName, long maxId);