Asp.Net Web API oAuth 2.0 cannot validate with password containing ampersand (&)

后端 未结 2 1031
挽巷
挽巷 2021-01-24 05:28

I am having a wired issue in my AngularJs application. When user is trying to login to the app and if the password contains ampersand (&), then it couldn\'t able to validate

2条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-24 06:02

    I had the same issue with an anguar project while entering special characters(ex: &, +) in password field. Encoding password with encodeURIComponent did the trick:

    "&password=" + encodeURIComponent(password)

    Hope it helps

提交回复
热议问题