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
In the metadata template for the SP on line 18 (sp/templates/flask_saml2_sp/metadata.xml) the NameIDFormat is printed: <md:NameIDFormat>{{ nameid_format }}</md:NameIDFormat>
Another var, {{ certificate }}, is passed to the template through sp.get_metadata_context() in sp/sp.py to the Metadata class in sp/views.py. However, {{ nameid_format }} is missing there.
So I expected to see my NameIDFormat if I defined it in app.config['SAML2_SP'], but it didn’t show up.
The text was updated successfully, but these errors were encountered:
In the metadata template for the SP on line 18 (sp/templates/flask_saml2_sp/metadata.xml) the NameIDFormat is printed:
<md:NameIDFormat>{{ nameid_format }}</md:NameIDFormat>
Another var,
{{ certificate }}
, is passed to the template throughsp.get_metadata_context()
in sp/sp.py to the Metadata class in sp/views.py. However,{{ nameid_format }}
is missing there.So I expected to see my NameIDFormat if I defined it in
app.config['SAML2_SP']
, but it didn’t show up.The text was updated successfully, but these errors were encountered: