githubLinkedID returns the unique ID for a GitHub user.
(u *github.User)
| 2160 | |
| 2161 | // githubLinkedID returns the unique ID for a GitHub user. |
| 2162 | func githubLinkedID(u *github.User) string { |
| 2163 | return strconv.FormatInt(u.GetID(), 10) |
| 2164 | } |
| 2165 | |
| 2166 | // oidcLinkedID returns the uniqued ID for an OIDC user. |
| 2167 | // See https://openid.net/specs/openid-connect-core-1_0.html#ClaimStability . |