问题
I'm trying to list all forks of a repository with the Github API (with a valid personal access token):
https://api.github.com/repos/nickperkinslondon/angular-bootstrap-nav-tree/forks/
but it returns a not found error:
documentation_url: "https://developer.github.com/v3",
message: "Not Found"
回答1:
Try removing the trailing slash:
https://api.github.com/repos/nickperkinslondon/angular-bootstrap-nav-tree/forks
来源:https://stackoverflow.com/questions/31516921/list-forks-with-github-api-v3