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
I am unable to find documentation on how to add IDP IDs to the OIDC middleware config to display social authentication for this particular example (nodejs-express).
Hi @jayanthv86 , I assume you're trying to find a way for this library to add an idp= paramater to the /authorize URL request? I don't think this library provides a way to do that right now.
I am unable to find documentation on how to add IDP IDs to the OIDC middleware config to display social authentication for this particular example (nodejs-express).
{
"webServer": {
"port": 8080,
"oidc": {
"clientId": "xxxx",
"clientSecret": "xxxx",
"issuer": "https://jay.okta.com/oauth2/xxxxxx",
"redirectUri": "http://localhost:8080/authorization-code/callback",
"scope": "openid profile email"
}
},
"resourceServer": {
"port": 8000,
"oidc": {
"issuer": "https://jay.okta.com/oauth2/xxxxxx"
},
"assertClaims": {
"aud": "api://default",
"cid": "xxxxxx"
}
}
}
The text was updated successfully, but these errors were encountered: