We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello all, please, need help with the config for saml2, I'm receiving this error, and have no idea how to add this attribute.
Error processing SAML response: 'Config' object has no attribute 'correctly_signed_response'
My saml config
def parse_authn_response(self, saml_response): # Load the IdP configuration and parse the SAML response saml_settings = { 'metadata': { 'remote': [{ 'url': OKTA_URL_METADATA, 'cert': MY_CERT, }], }, 'service': { 'sp': { 'endpoints': { 'assertion_consumer_service': [(self.get_acs_url(), BINDING_HTTP_POST)], }, 'allow_unsolicited': True, 'name_id_format': 'urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress', }, }, } config = Saml2Config() config.load(saml_settings) # Parse the response authn_response = AuthnResponse(config, saml_response, entity_id=sp.get_entity_id(), binding=BINDING_HTTP_POST)
Does anyone know what and how I can fix it ??
thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello all, please, need help with the config for saml2, I'm receiving this error, and have no idea how to add this attribute.
Error processing SAML response: 'Config' object has no attribute 'correctly_signed_response'
My saml config
Does anyone know what and how I can fix it ??
thanks
The text was updated successfully, but these errors were encountered: