OpenID Connect client that works with GOV.UK One Login.
Package provides the following endpoints:
one-login/login/to login via GOV.UK One Login.one-login/callback/endpoint GOV.UK One Login will send logged-in users back to.back-channel-logout/endpoint GOV.UK One Login will send logout notifications to.
The example project also provides an example logout view that will log the user out of your service as well as GOV.UK One Login.
See class ExampleLogoutView for example that includes post_logout_redirect_uri
- GOV.UK One Login admin tool used to create a test application: https://admin.sign-in.service.gov.uk/
- GOV.UK One Login documentation: https://www.sign-in.service.gov.uk/documentation
- GOV.UK One Login technical documentation: https://docs.sign-in.service.gov.uk/
Before starting, you should create an example app using the GOV.OK One Login admin tool.
-
Add "govuk_onelogin_django" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ..., "govuk_onelogin_django", ]
-
Include the govuk_onelogin_django URLconf in your project urls.py like this:
path("one-login/", include("govuk_onelogin_django.urls")),
-
Include OneLoginBackend to your AUTHENTICATION_BACKENDS like this:
AUTHENTICATION_BACKENDS.append("govuk_onelogin_django.backends.OneLoginBackend")
-
Include the following settings in your settings.py file
# Required start page that includes a link to log in to GOV.UK One Login LOGIN_URL = "your-login-start-page" # A view name that the logged-in user will be redirected to after logging in via GOV.UK One Login LOGIN_REDIRECT_URL = "view-to-send-logged-in-users-to" # All other GOV.UK One Login settings required to configure govuk-onelogin-django GOV_UK_ONE_LOGIN_CLIENT_ID = "Your client ID" GOV_UK_ONE_LOGIN_CLIENT_SECRET = "Your client secret" GOV_UK_ONE_LOGIN_OPENID_CONFIG_URL = "Either integration or production config url." GOV_UK_ONE_LOGIN_SCOPE = "Required scopes" GOV_UK_ONE_LOGIN_AUTHENTICATION_LEVEL = "Required authentication level" GOV_UK_ONE_LOGIN_CONFIDENCE_LEVEL = "Required confidence level"
Note:
GOV_UK_ONE_LOGIN_CLIENT_SECRETis a base64 encoded string of your private key. e.g.base64 -i private_key.pemSee this document detailing how to generate your keys.
See configuration document detailing how to override the following:
- Service logout behaviour of back-channel-logout/ endpoint
- Override how GOV.UK One Login config is fetched
- how GOV_UK_ONE_LOGIN_CLIENT_ID is loaded
- How GOV_UK_ONE_LOGIN_CLIENT_SECRET is loaded
See the example_project README.md for details on how to build and run the example project.
- Install uv
- Update the project's environment:
uv sync - Run tests using local venv:
uv run pytest - Running the tests against all supported python versions:
- Install tox and tox-uv:
uv tool install tox --with tox-uv - Check tox is installed:
tox --version - run the tests:
tox run
- Install tox and tox-uv:
- Install pre-commit hooks:
uv run pre-commit install - Run pre-commit against all files:
uv run pre-commit run --all-files
- Run the Ruff linter:
uv run ruff check - Resolve fixable errors:
uv run ruff check --fix - Run the Ruff formatter:
uv run ruff format - mypy:
uv run mypy --config-file=pyproject.toml
- View the current project version:
uv version - Update the project version with dryrun:
uv version --bump minor --dry-run - Update the project version:
uv version --bump minor - Publish to PyPI:
uv publish --token <token>