在 github 之前获取问题

Getting issues before a time from github

github issues api 提供了一种获取特定时间或之后更新的所有问题的方法,但是有没有一种方法可以获取特定时间之前的所有问题?

如果issues API isn't a good fit, you can falbback on the Issues Search API.

这至少允许从最旧到最近的搜索并过滤掉超过最初指定时间的搜索。

Example

Let’s say you want to find the oldest unresolved Python bugs on Windows. Your query might look something like this.

https://api.github.com/search/issues?q=windows+label:bug+language:python+state:open&sort=created&order=asc

过滤该查询的结果,剩下的是某个特定日期之前的所有问题。