Github API列表源代码库

时间:2016-11-28 22:39:03

标签: javascript github github-api

有没有办法只列出源代码库? 我只能为包含任何分叉存储库的用户获取整个存储库列表,这通常会返回比我想要的更大的列表。

这就是我正在使用的:

 https://api.github.com/users/alvarotrigo/repos?per_page=100

The documentation似乎没有提供任何过滤参数吗?

1 个答案:

答案 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