Hi,
I understand I can get the current username via Request.GetSession().UserAuthName but how do I get the password?
Thanks,
Vic
Hi,
I understand I can get the current username via Request.GetSession().UserAuthName but how do I get the password?
Thanks,
Vic
You shouldn’t be able to access the clear text password by design, you can only get its hash from the UserAuth
table.
Thanks, I was just trying to pass the credentials on to another chained API call, sound like this can’t happen, I will request the username/password from the user in the original/base request.