如何通过githubapi列出组织私有仓库?
How to list organisation private repository via github api?
我正在尝试使用 Github api 列出组织的私有存储库。但我只得到 public 存储库作为 return.
这是 url :
https://api.github.com/orgs/github/repos
我还在 header 中添加了访问令牌。并且还给出了正确的范围。
这是文档:
https://developer.github.com/v3/
https://developer.github.com/v3/orgs/#list-organizations-for-the-authenticated-user
您可以使用 Github API: https://developer.github.com/v3/repos/#list-organization-repositories
获取/orgs/:org/repos
要在预览期间访问存储库可见性,您必须在接受 header:
中提供自定义媒体类型
application/vnd.github.nebula-preview+json
您还可以添加类型参数来控制可见性:
我正在尝试使用 Github api 列出组织的私有存储库。但我只得到 public 存储库作为 return.
这是 url : https://api.github.com/orgs/github/repos
我还在 header 中添加了访问令牌。并且还给出了正确的范围。
这是文档: https://developer.github.com/v3/
https://developer.github.com/v3/orgs/#list-organizations-for-the-authenticated-user
您可以使用 Github API: https://developer.github.com/v3/repos/#list-organization-repositories
获取/orgs/:org/repos
要在预览期间访问存储库可见性,您必须在接受 header:
中提供自定义媒体类型application/vnd.github.nebula-preview+json
您还可以添加类型参数来控制可见性: