I want to allow users to use several options for authenticating with a resource. Particularly I want to allow a user to use either SSO or basic auth. I can set up one or the other for a single resource, is it possible to set them up side by side so a user can choose to either sign up with SSO or with basic auth?
Hello @Fayyazul_Hassan!
I think for this you might need two separate resources and then in your application a toggle/selection which can be used to set the resource dynamically here:
A modal prompt asking for which method they prefer could then set a variable or be used directly as additionalScope
in an event handler to dynamically choose the correct resource id.
1 Like
I think the above is your only way to do this, @Fayyazul_Hassan! Let us know if you have any additional questions.