Created
October 13, 2023 16:29
-
-
Save xymopen/c8abf6174f246358167cddea1bcb7cf1 to your computer and use it in GitHub Desktop.
GitHub OAuth App OIDC Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"issuer": "https://github.com", | |
"authorization_endpoint": "https://github.com/login/oauth/authorize", | |
"token_endpoint": "https://github.com/login/oauth/access_token", | |
"userinfo_endpoint": "https://api.github.com/user", | |
"scopes_supported": [ | |
"repo", | |
"repo:status", | |
"repo_deployment", | |
"public_repo", | |
"repo:invite", | |
"security_events", | |
"admin:repo_hook", | |
"write:repo_hook", | |
"read:repo_hook", | |
"admin:org", | |
"write:org", | |
"read:org", | |
"admin:public_key", | |
"write:public_key", | |
"read:public_key", | |
"admin:org_hook", | |
"gist", | |
"notifications", | |
"user", | |
"read:user", | |
"user:email", | |
"user:follow", | |
"project", | |
"read:project", | |
"delete_repo", | |
"write:packages", | |
"read:packages", | |
"delete:packages", | |
"admin:gpg_key", | |
"write:gpg_key", | |
"read:gpg_key", | |
"codespace", | |
"workflow" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment