[KEYCLOAK-8872] Keycloak 4.6.0.Final Script authenticator is missing
This commit is contained in:
parent
dcd2deb229
commit
e7fb0ed594
1 changed files with 8 additions and 1 deletions
|
@ -53,7 +53,14 @@ Executions can be used
|
|||
|
||||
.Script Authenticator
|
||||
A _script_ authenticator allows to define custom authentication logic via JavaScript.
|
||||
Custom authenticators. Authentication scripts must at least provide one of the following functions:
|
||||
Custom authenticators. In order to make use of this feature, it must be explicitly enabled:
|
||||
[source]
|
||||
----
|
||||
bin/standalone.sh|bat -Dkeycloak.profile.feature.scripts=enabled
|
||||
----
|
||||
For more information, see the link:{installguide_profile_link}[{installguide_profile_name}] section.
|
||||
|
||||
Authentication scripts must at least provide one of the following functions:
|
||||
`authenticate(..)` which is called from `Authenticator#authenticate(AuthenticationFlowContext)`
|
||||
`action(..)` which is called from `Authenticator#action(AuthenticationFlowContext)`
|
||||
|
||||
|
|
Loading…
Reference in a new issue