You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ui_locales by spec is a space-separated list of identifiers, but in the schema is defined as List[].
When an RP passes a valid string, with one or more values in it, the schema validator complains that the parameter is invalid.
This is caused by the update of the parameter in 806a4e3
in spid_cie_oidc/provider/schemas/authn_requests.py
ui_locales: Optional[List[str]]
To resolve either switch back the definition (rolling back the commit) or modify the handling in the view to force processing the parameter as List.
in spid_cie_oidc/provider/views/authz_request_view.py
ui_locales
by spec is a space-separated list of identifiers, but in the schema is defined as List[].When an RP passes a valid string, with one or more values in it, the schema validator complains that the parameter is invalid.
This is caused by the update of the parameter in 806a4e3
in spid_cie_oidc/provider/schemas/authn_requests.py
To resolve either switch back the definition (rolling back the commit) or modify the handling in the view to force processing the parameter as List.
in spid_cie_oidc/provider/views/authz_request_view.py
The text was updated successfully, but these errors were encountered: