GitHub user nirmal-tw edited a comment on the discussion: SAML Integration

@RAVIKISHORE225 I have used settings.json file with SP and IDP details not 
using metadata xml. Following is sample settings.json that worked for me.

`{
  "strict": true,
  "debug": true,
  "sp": {
    "entityId": "http://localhost:8088/";, -- Superset Endpoint
    "assertionConsumerService": {
      "url": "http://localhost:8088/saml/login?acs";, -- Login Endpoint of 
superset
      "binding": "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST"
    },
    "singleLogoutService": {
      "url": "http://localhost:8088/saml/login?sls";, -- Logout endpoint of 
superset
      "binding": "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-REDIRECT"
    },
    "NameIDFormat": "urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified",
    },
  "idp": {
    "entityId": "<IDP_ENTITY_URL>", -- To be captured from IDP 
    "singleSignOnService": {
      "url": "<IDP_SIGNON_URL>",
      "binding": "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Post"
    },
    "singleLogoutService": {
      "url": "<IDP_SIGNOUT_URL>",
      "binding": "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-REDIRECT"
    },
    "x509cert": "<IDP_CERTIFICATE>"

  }
}`

GitHub link: 
https://github.com/apache/superset/discussions/32786#discussioncomment-13282244

----
This is an automatically sent email for notifications@superset.apache.org.
To unsubscribe, please send an email to: 
notifications-unsubscr...@superset.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org

Reply via email to