Reputation: 11619
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"
Upvotes: 1
Views: 1908
Reputation: 18762
Try removing the trailing slash:
https://api.github.com/repos/nickperkinslondon/angular-bootstrap-nav-tree/forks
Upvotes: 4