docs/content/integration/openid-connect/clients/1password/index.md
{{% oidc-common %}}
This example makes the following assumptions:
https://{{< sitevar name="subdomain-authelia" nojs="auth" >}}.{{< sitevar name="domain" nojs="example.com" >}}/1passwordSome of the values presented in this guide can automatically be replaced with documentation variables.
{{< sitevar-preferences >}}
The following YAML configuration is an example Authelia client configuration for use with 1Password which will operate with the application example:
identity_providers:
oidc:
## The other portions of the mandatory OpenID Connect 1.0 configuration go here.
## See: https://www.authelia.com/c/oidc
clients:
- client_id: '1password'
client_name: '1Password'
public: true
authorization_policy: 'two_factor'
require_pkce: true
pkce_challenge_method: 'S256'
redirect_uris:
- '' # See step 5 below.
scopes:
- 'openid'
- 'email'
- 'profile'
response_types:
- 'code'
grant_types:
- 'authorization_code'
access_token_signed_response_alg: 'none'
userinfo_signed_response_alg: 'none'
token_endpoint_auth_method: 'none'
To configure 1Password there is one method, using the Web GUI.
To configure 1Password to utilize Authelia as an OpenID Connect 1.0 Provider, use the following instructions:
Other from the list of identity providers and select Next.Other from the identity provider list.1passwordhttps://{{< sitevar name="subdomain-authelia" nojs="auth" >}}.{{< sitevar name="domain" nojs="example.com" >}}/.well-known/openid-configurationRedirect URIs and configure the Authelia redirect_uris option.