How to resolve Third-Party Login Failure

I am having trouble using Github as third party for logging in to an app. I am getting this error (page):

Third-Party Login Failure An error occurred while attempting to login via your third-party account.

My alluth version:

django-allauth==65.2.0

Project's settings.py:

INSTALLED_APPS = [
    ...
    # third-party apps
    "allauth_ui",
    "allauth",
    "allauth.account",
    "allauth.socialaccount",
    "allauth.socialaccount.providers.github",
    "widget_tweaks",
    "slippers",
]


SOCIALACCOUNT_PROVIDERS = {
    "github": {
        "VERIFIED_EMAIL": True
    }
}

All settings in django admin's social application's entry are properly setup (i.e. Client ID and Secret Key). All matching correctly what was setup when creating the Github Apps...

Back to Top