0

http://dev.twitter.com/docs/working-with-timelines上的“使用时间线”文档中, Twitter 建议使用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 使用光标方法(而不是分页)检索指定的用户时间线,如果可以,如何?

4

1 回答 1

0

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

于 2013-01-10T18:06:47.330 回答