Github API sorting search results by the created_at field

前端 未结 2 388
长情又很酷
长情又很酷 2021-01-13 03:43

How can I create a search query sorted by the created_at field? I\'ve tried:

https://api.github.com/search/repositories?q=blog&sort=created_         


        
2条回答
  •  暖寄归人
    2021-01-13 04:18

    In addition to what was written till now I found out here another way. That is:

    https://api.github.com/users//repos?sort=created&direction=desc
    

    For example:

    https://api.github.com/users/nadar71/repos?sort=created&direction=desc
    

提交回复
热议问题