Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Using both PasswordAuthenticator and HandshakeAuthenticator (SSO) simultaneously
I am integrating Vanilla into another application (not with dashboard/garden) where it would be useful to allow both Single Sign On's with our current application and also allow normal Vanilla forum sign-ups. What is the best way to do this? I was thinking that I would use HandshakeAuthenticator and create a custom Dashboard-Application that had a simple user Model that would be used in conjunction with our external application's users. For example (in pseudo code):
Thank you.
Richard
Is there a better way to do this?
if(exists(ExternalApplicationUser)) {
SingleSignOnAccount->id = ExternalApplicationUser->id;
} else {
customUser = new CustomUser(form[username], form[password], form[email])
SingleSignOnAccount->id = customUser->id;
}
Thank you.
Richard
0
Comments