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:

  1. get /repos/:owner/:repo/contributors
  2. get /users/:user/repos
  3. 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

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -