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
OneLogin_Saml2_IdPMetadataParser.parse() targets specifically xml that has a 'md' namespace in nodes because it has a fixed xpath selector//md:EntityDescriptor
The XML that comes back from the metadata endpoint at Azure Active Directory (now known as Entra ID) is not namespaced with 'md', for example:
<EntityDescriptor xmlns="urn:oasis:names:tc:SAML:2.0:metadata" ID="xxx" entityID="https://sts.windows.net/xxx/">as noted here
So it returns nothing, preventing anything meaningful from happening.
I could handpick the values out of the xml and store them in my environment but having any changes from their side automatically propagate to our implementation is more desirable.
Is this recognised? Will a PR addressing this be considered?
The text was updated successfully, but these errors were encountered:
As per
OneLogin_Saml2_IdPMetadataParser.parse() targets specifically xml that has a 'md' namespace in nodes because it has a fixed xpath selector
//md:EntityDescriptor
The XML that comes back from the metadata endpoint at Azure Active Directory (now known as Entra ID) is not namespaced with 'md', for example:
<EntityDescriptor xmlns="urn:oasis:names:tc:SAML:2.0:metadata" ID="xxx" entityID="https://sts.windows.net/xxx/">
as noted hereSo it returns nothing, preventing anything meaningful from happening.
I could handpick the values out of the xml and store them in my environment but having any changes from their side automatically propagate to our implementation is more desirable.
Is this recognised? Will a PR addressing this be considered?
The text was updated successfully, but these errors were encountered: