We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 014e121 commit 468cc87Copy full SHA for 468cc87
src/satosa/proxy_server.py
@@ -20,6 +20,8 @@
20
def parse_query_string(data):
21
query_param_pairs = _parse_query_string(data)
22
query_param_dict = dict(query_param_pairs)
23
+ if "resource" in query_param_dict:
24
+ query_param_dict["resource"] = [t[1] for t in query_param_pairs if t[0] == "resource"]
25
return query_param_dict
26
27
0 commit comments