For an overview of how the service uses GOV.UK Verify for identity assurance see the service’s Confluence space. There is more general information about GOV.UK Verify on the GOV.UK Verify documentation site.
Visit GOV.UK Verify Support for the most up-to-date way to get support. There is also a #govuk-verify slack channel on the ukgovernmentdigital.slack.com slack workspace.
GOV.UK Verify integration requires certain environment variables be set:
GOVUK_VERIFY_VSP_HOST=http://URL.FOR.VSP:12345
GOV.UK Verify integration requires using a Verify Service Provider (VSP) to handle SAML secure messaging.
By default, Foreman downloads and runs the VSP via foreman start
in
development with sample data for LOA 2. You must have Java 11, or a long-term
supported version of Java 8 installed for this to run successfully. We recommend
openjdk
You can check that the VSP is running ok by hitting the healthcheck URL:
curl localhost:50300/admin/healthcheck
After beginning the GOV.UK Verify flow, you will be redirected to a URL which
looks something like
https://compliance-tool-reference.ida.digital.cabinet-office.gov.uk/SAML2/SSO
,
and which will display a JSON object in your browser. To complete the GOV.UK
Verify flow from here:
- Follow the
responseGeneratorLocation
URL from this JSON object. - This will give you another JSON object, which provides
executeUri
URLs which you can follow to simulate various Verify outcomes. For example, to simulate a successful Verify outcome, use the test case whose title at the time of writing is "Verified User On Service With Non Match Setting".
These steps are explained in more detail in the GOV.UK Verify documentation.
Users that are unable to complete the GOV.UK Verify process are still able to submit a claim. To do so they are linked back to the service on the GOV.UK Verify failure screen so they can provide their identity information and complete their claim. Such claims are then manually check to confirm the claimants identity. To simulate such a claim, visit the following URL after you reach the screen just before the GOV.UK Verify stage:
https://localhost:3000/verify/authentications/skip
How to complete the GOV.UK Verify journey in our development
environment (their integration environment)
We already have some test users set up which give these responses from GOV.UK Verify:
- UK identity provider, response with gender
- UK identity provider, response without gender
The credentials for these users are given on this Confluence page.
You can also create new integration users by:
- using the registration form on the stub identity providers – this will only let you create an identity without middle name and without gender
- using the user administration API:
- it’s described in the
GOV.UK Verify documentation
with example
curl
requests - you’ll need a username and password to use this API – you can find them in
the development key vault, with names
VerifyBasicAuthUsername
andVerifyBasicAuthPassword
- it’s described in the
GOV.UK Verify documentation
with example
- Choose the “Select your European digital identity” option on the Verify Hub.
- Select the Stub Country (Select Stub IDP Demo).
- Change to the Register tab and fill out the form – the password is stored in
plain-text so just use
password
or similar. - Select “I agree” to return to the service.
The VSP uses keys and certificates to encrypt requests and decrypt responses from GOV.UK Verify. These need to be rotated regularly. See GOV.UK Verify – Rotating keys and certificates for instructions on doing this.