Skip to content

Instantly share code, notes, and snippets.

@xymopen
Created October 13, 2023 16:29
Show Gist options
  • Save xymopen/c8abf6174f246358167cddea1bcb7cf1 to your computer and use it in GitHub Desktop.
Save xymopen/c8abf6174f246358167cddea1bcb7cf1 to your computer and use it in GitHub Desktop.
GitHub OAuth App OIDC Configuration
{
"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