Reputation: 23
I am new to the REST APIs concept. Though I searched a lot but couldn't able to find the way to list all the public repositories of github of any user. Any ideas ?
Upvotes: 1
Views: 1164
Reputation: 7220
you can use my repo on GitHub, I used Github API for username info and repose . hope help somebody
https://github.com/Sanaebadi97/Github-Api-Single-User
Upvotes: 0
Reputation: 16038
Using the Github API you can list all repositories and check for the private
key as false
.
This URL for example finds the repositories of username
:
https://api.github.com/users/username/repos
Upvotes: 1