Replies: 3 comments
-
|
Hi! as for SAML, the answer to the first question is yes, we want to keep and support SAML authentication if anyone uses it. |
Beta Was this translation helpful? Give feedback.
-
|
Yeah, different openid providers often put user data in their own special fields, and when implementing support with our own auth provider that follows keycloak's openid connect scheme - we didn't come up with a universal solution, so decided to not spend more time on it since there was plenty other of work to do. Creating a session is a valid option, but we want to make every component of the app scalable, so the units should be stateless. That leaves us with an option where we use an encrypted session cookie, and store the nonce and state there. |
Beta Was this translation helpful? Give feedback.
-
|
Hello! We added OpenId auth with ADFS. Our authentication engineers says what to enable at server side:
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello there,
I've been playing around DeviceHub - Great so far! Thanks for efforts to maintain this.
Anyway, I had some issues around Authentication methods:
import passport form "passport")user_infoscope, they useprofilescope for getting user profile instead. There's ascopesoption, but there are no usages to modify requested scope. So modified code to respectscopesoption to resolve this.stateparameter, and validation must be performed. So modified code to generatestateparameter, store this to cookie (although this is bad security practice), then perform validation to continue auth flow.Beta Was this translation helpful? Give feedback.
All reactions