https://github.com/paulirish/github-email/

Retrieve a GitHub user’s email even though it’s not public

Emails from recent commits

每一个commit都会生成event,可以在github的api查到。(即便删除那个commit,event里依然有。。。

curl https://api.github.com/users/$user/events|sed -nE 's#^.*"(email)": "([^"]+)",.*$#\2#p'|sort -u

Emails from owned-repo recent activity

最近的拥有的项目,中的参与人的邮箱。

curl "https://api.github.com/users/$user/repos?type=owner&sort=updated" -s \
        | sed -nE 's#^.*"name": "([^"]+)",.*$#\1#p' \
        | head -n1

github-email:通过github帐号查某人可能的邮箱

相关文章:

  • 2021-10-31
  • 2021-07-08
  • 2021-12-25
  • 2022-01-07
  • 2022-12-23
  • 2021-06-08
  • 2021-10-13
  • 2022-12-23
猜你喜欢
  • 2021-06-04
  • 2022-01-28
  • 2022-01-15
  • 2022-01-27
  • 2021-11-09
  • 2021-04-03
  • 2021-09-09
相关资源
相似解决方案