Hi guys,
security.ExtranetLogin method seems to be removed in version 9.3.5. What is the replacement method?
We are trying to upgrade a client solution where it is used in the context below:
// Workaround for programmatic logins with hashed passwords setting in DW, read more on https://doc.dynamicweb.com/forum/development/development/authenticate-user-through-api
var originalPasswordStringFromDatabase = loginUser.Password;
loginUser.Password = "TempPassword";
loginUser.Save();
security.ExtranetLogin(loginUser.UserName, "TempPassword", true);
loginUser.Password = originalPasswordStringFromDatabase;
loginUser.Save();