Discussions
Logon by user id
over 6 years ago by Larry Allen(edited)
Back in the iBO days, we created integrations that would assist users that had forgotten their passwords. After they provide additional identity information we called iBO methods that would log them in:
//from a manger context
SecurityContext.LogonByUserId(userName);
FormsAuthentication.SetAuthCookie(AppPrincipal.CurrentIdentity.Name, rememberMe);
Is it possible to achieve this from the REST API?
Thanks!