Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Gordon Saxby 1465 posts 1887 karma points
    Mar 02, 2022 @ 14:22
    Gordon Saxby
    0

    How to Validate a member username and password

    What is the equivalent of this for Umbraco V9?

    Membership.ValidateUser(username, password)
    

    I just want to check that the username and password is valid, not to actually log them in.

  • Arul Prabakaran 6 posts 90 karma points c-trib
    Jun 08, 2022 @ 16:03
    Arul Prabakaran
    0

    Hi Gordon,

    You can use MemberManager to check the password for current logged in member.

    MemberIdentityUser memberIdentityUser = await _memberManager.GetCurrentMemberAsync();
    bool isPasswordValid = await _memberManager.CheckPasswordAsync(memberIdentityUser, Password);
    

    Thanks

  • K'Smart 2 posts 72 karma points
    Mar 10, 2023 @ 10:38
    K'Smart
    0

    Hi Arul,

    Just follow up this question. May I ask why I always get null from the memberManager.GetCurrentMemberAsync() ? And callmemberManager.ValidateCredentialsAsync always return false.

    Any advice please?

  • Lewis Smith 211 posts 620 karma points c-trib
    Mar 14, 2023 @ 09:40
    Lewis Smith
    1

    Hi Kun,

    GetCurrentMemberAsync() will return null if the user isnt logged in, the docs are here on this https://docs.umbraco.com/umbraco-cms/reference/querying/imembermanager#getcurrentmemberasync

    ValidateCredentialsAsync() validates the login credentials without actually logging the user in, so if this is returning false then the credentials youre passing in will be incorrect, docs on this one are here https://docs.umbraco.com/umbraco-cms/reference/querying/imembermanager#validatecredentialsasync-string-username-string-password

    Lewis

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies