I wanted to integrate GitHub saml sso for the project. I have a custom IDP and from the SP initiated saml flow, like getting to the https://github.com/orgs/ORG-NAME/sso and then sso getting successful, but then GitHub asks for the password with prefilled username in it. Is there any way to direct login without asking for the password, as SAML is used for the passwordless sign in only
session.CustomAttributes = append(session.CustomAttributes, customAttributes...) administratorAttr := saml.Attribute{ Name: "administrator", FriendlyName: "administrator", Values: []saml.AttributeValue{{ Type: "xs:boolean", Value: "true", }}, }
tried to make it administrator , incase it wanted me to sign in just to get the roles etc but that also did not work