...
Create a new Authentication Method in the Authentication methods page and select Backchannel Authentication Adapter as the Method Type. After finishing you should end up in the method's configuration page. You can go there by clicking the method in the list.
...
title | Bank ID Authentication Adapter 1.0.0 |
---|
SSO 8.8 (or newer) doesn't anymore send the parameter acr_values
in the UBAA authentication request.
BankID Authentication Adapter 1.0.0 requires that the parameter acr_values
is present. This requirement has been removed from versions newer than 1.0.0, so it's recommended to be updated to the newest version.
Optionally, to make SSO 8.8 (or newer) compatible with BankID Authentication Adapter 1.0.0, you can include the parameter "ubisecure_request_parameters"
with {"acr_values":"mod_mf"}
in the client metadata. This makes SSO to send the parameter acr_values=mod-mf
in the authentication request.
Code Block | ||
---|---|---|
| ||
{
"ubisecure_request_parameters": {
"acr_values": "mod-mf"
}
} |
Under the Backchannel Authentication Adapter tab:
...