From 37602238d7ef4d5ec0bdc1af297d824a7e80a5d1 Mon Sep 17 00:00:00 2001 From: Dolsy Smith Date: Tue, 27 Apr 2021 13:13:45 -0400 Subject: [PATCH] Enabled setting needed for ADFS --- saml_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saml_utils.py b/saml_utils.py index 4870b07..cf3db8d 100644 --- a/saml_utils.py +++ b/saml_utils.py @@ -33,7 +33,7 @@ def prepare_flask_request(request): 'script_name': request.path, 'get_data': request.args.copy(), # Uncomment if using ADFS as IdP, https://github.com/onelogin/python-saml/pull/144 - # 'lowercase_urlencoding': True, + 'lowercase_urlencoding': True, 'post_data': request.form.copy() }