-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
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
SAMLError: Missing entity_id specification #9
Comments
Same here |
Looks like the problem was introduced in 4.6.1. I downgraded to 4.6.0 and was fine. |
This is very useful, thanks everyone! |
SAML2 Service Providers should have an entityid, just add the following to the settings ( https://github.com/jpf/okta-pysaml2-example/blob/master/app.py#L97 ):
Or some unique URL on the applications domain (ideally should point to where metadata xml can be retrieved). |
Yeah, downgrading the version worked fine !!.. |
This worked well for me. thanks. |
In case it's unclear, the entityID must match the destination URL / audience URI in the SAML 2.0 settings of the IdP. |
Python package pysaml2 version 4.6.1 will return the error
SAMLError: Missing entity_id specification
.Downgrading the pysaml version to 4.0.3 allows the SAML assertion to post successfully.
The text was updated successfully, but these errors were encountered: