From b441b42af7a7f2fd8978fd93f51ebf24d1fa66e7 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 2 Jul 2019 23:33:22 +0200 Subject: [PATCH] auth_fc: force acr_values to eidas1 (#34448) --- src/authentic2_auth_fc/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/authentic2_auth_fc/views.py b/src/authentic2_auth_fc/views.py index 6e3b4f54..10088737 100644 --- a/src/authentic2_auth_fc/views.py +++ b/src/authentic2_auth_fc/views.py @@ -82,6 +82,7 @@ def ask_authorization(request, scopes, logger): 'response_type': 'code', 'state': state, 'nonce': state, + 'acr_values': 'eidas1', } logger.debug('query string %s', params) url = '{0}?{1}'.format(app_settings.authorize_url, urlencode(params)) -- 2.20.1