Skip to content

Instantly share code, notes, and snippets.

@jgomer2001
Last active March 1, 2019 14:16
Show Gist options
  • Save jgomer2001/2d89c37b58bcf01d811a79c4fa614944 to your computer and use it in GitHub Desktop.
Save jgomer2001/2d89c37b58bcf01d811a79c4fa614944 to your computer and use it in GitHub Desktop.
Configures IDP-initiated params for configured SAML providers
{
"openidclient": {
"authorizationEndpoint": "https://my.gluu.to/oxauth/restv1/authorize",
"clientId": "@!...",
"acr_values": "passport_saml"
},
"authorizationParams": [
{
"provider" : "saml-IPD1",
"redirect_uri": "",
"response_type": "code",
"scope": "openid user_name email"
},
{
"provider" : "saml-IPD2",
"redirect_uri": "",
"response_type": "code id_token token",
"scope": "openid"
}
]
}
@jgomer2001
Copy link
Author

jgomer2001 commented Feb 4, 2019

Notes:

  • clientId: Corresponds to a pre built client for idp-initiated stuff
  • provider: ID of a provider already part of configured providers. Example here
  • redirect_uri: The final step of the IDP-initiated flow started with this particular provider. Editions of these URIs should sync the redirect URIs of the client used

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment