Hi there,
First of all, let me point out I'm totally new to the things below so, please, forgive me if it may feel silly.
I'm trying to develop a SAML-based SSO for a Ruby application.
In my Azure Active Directory admin center, I have created an enterprise application (SAML SSO Test) and set up single sign on as below.
On the Ruby side, I'm using the ruby-saml gem (https://github.com/onelogin/ruby-saml) and I have configured it as described in the README
settings.sp_entity_id = url_base + "/saml/metadata"
settings.assertion_consumer_service_url = url_base + "/saml/acs"
settings.assertion_consumer_logout_service_url = url_base + "/saml/logout"
Where /saml/metadata returns the configuration in XML format.
Now, when I try to sign in I get the following error
What am I misisng here?
Where should I define the enitity_id in the SAML configuration on the Azure Active Directory admin center?