如何创建按created_at
字段排序的搜索查询?我试过了:
https://api.github.com/search/repositories?q=blog&sort=created_at&order=desc
和
https://api.github.com/search/repositories?q=blog&sort=created&order=desc
但是我得到与此查询相同的结果:
https://api.github.com/search/repositories?q=blog
答案 0 :(得分:2)
sort
参数only takes one of three values:stars
,forks
或updated
:
排序字段。其中一个
stars
,forks
或updated
。默认值:结果按最佳匹配排序。
似乎无法按创建日期排序,但您可以将搜索查询的响应读入数组并从那里排序。
答案 1 :(得分:0)
除了到目前为止所写的内容,我还发现了here的另一种方式。 那是:
https://api.github.com/users/<user name>/repos?sort=created&direction=desc
例如:
https://api.github.com/users/nadar71/repos?sort=created&direction=desc