git - GithubAPI: Get repositories a user has ever committed in -
within scope of research project ideally need 2 users find repositories have in shared history of public development, i.e. have committed in same repos.
i wonder if possible list of repositories ever been touched given user.
in github-api can see only:
get /repos/:owner/:repo/contributors
get /users/:user/repos
get /users/:user/events
first gives contributors given :repo
repository second gives :user
's repos third promising, events limited 300
is there way repositories user has ever worked on github without dumping 3 millions repos?
you try using github search api: https://developer.github.com/v3/search/#search-code
one catch have specify query, example if lookup name query 'def' get: https://api.github.com/search/code?q=def+user:manuelvanrijn
Comments
Post a Comment