state
parameter with a value equal to 'foo'
.
https://{yourDomain}/authorize?state=foo&...
.
The following parameters are supported: scope
, device
, nonce
and state
.
scope
value in Lock is openid profile email
. This minimum scope value is required to make the Last time you logged in with feature work correctly.
openid profile email
when initializing Lock, and you are running your website from http://localhost
or http://127.0.0.1
, you will get the following error in the browser console:Consent required. When using getSSOData, the user has to be authenticated with the following scope: openid profile email
That will not happen when you run your application in production or if you specify the openid profile email
scope. You can read more about this in the User consent and third-party applications document.scope
parameter.
connectionScopes
configuration option for Lock, which allows you to specify scopes on any specific connection. This will be useful if you want to initially start with a set of scopes (defined on the dashboard), but later on request additional permissions or attributes from a specific connection. Read more about it on the Lock Configuration Options page.
state
parameter is an arbitrary state value that will be maintained across redirects. It is useful to mitigate XSRF attacks and for any contextual information, such as a return url that you might need after the authentication process is finished. If a custom state parameter is not provided, Lock will automatically generate one. For more information, see State Parameter.
nonce
parameter is used to help prevent replay attacks, and will be automatically generated by Lock if a custom value is not provided.
device
parameter sets the name of the device or browser requesting authentication.