我想从 Github API V 3.0 检索私有组织存储库,我在组织帐户中有一个私有存储库,当我想获取我的存储库时,API 只返回我的公共和公共分叉存储库,但私有存储库不检索,任何想法?
问问题
4387 次
2 回答
2
如果 repo 在组织下,您需要检索组织 repos 列表,而不是您自己的用户 repos。所以,而不是使用这个:
http://developer.github.com/v3/repos/#list-user-repositories
你需要使用这个:
http://developer.github.com/v3/repos/#list-organization-repositories
于 2013-05-22T17:37:43.790 回答
-5
解决了!我正在使用 github-node 并调用了该getFromUser
方法,但应该使用该getAll
方法来检索私有和公共存储库。它还返回我 fork 的私人组织存储库。
于 2013-05-23T10:00:00.760 回答