We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Package version (if known): V12 lastest
The application requests excessively wide permissions from GitHub, including full access to personal user data.
The application should request only the necessary scopes to function correctly, such as read:user and user:email.
read:user
user:email
To address this issue, update the GitHubOAuthSettingsHelper class in the configuration to use:
request_token_params={"scope": "read:user user:email"}
see: https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/scopes-for-oauth-apps
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Package version (if known): V12 lastest
Describe the bug
The application requests excessively wide permissions from GitHub, including full access to personal user data.
Steps to Reproduce
Expected behavior
The application should request only the necessary scopes to function correctly, such as
read:user
anduser:email
.Screenshots (if applicable)
Additional context
To address this issue, update the GitHubOAuthSettingsHelper class in the configuration to use:
see: https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/scopes-for-oauth-apps
The text was updated successfully, but these errors were encountered: