有没有办法只列出源代码库? 我只能为包含任何分叉存储库的用户获取整个存储库列表,这通常会返回比我想要的更大的列表。
这就是我正在使用的:
https://api.github.com/users/alvarotrigo/repos?per_page=100
The documentation似乎没有提供任何过滤参数吗?
答案 0 :(得分:2)
您需要使用search
api传递这类参数( fork
参数默认为false )
https://api.github.com/search/repositories?q=user:alvarotrigo
如果你想获得叉子,你也可以
https://api.github.com/search/repositories?q=user:alvarotrigo+fork:true