arthur.sw
arthur.sw

Reputation: 11619

List forks with Github API v3

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

Answers (1)

Ivan Zuzak
Ivan Zuzak

Reputation: 18762

Try removing the trailing slash:

https://api.github.com/repos/nickperkinslondon/angular-bootstrap-nav-tree/forks

Upvotes: 4

Related Questions