I'm trying to implement azure B2C using the new App Service Auth workflow as described here: https://cgillum.tech/2016/05/27/app-service-auth-and-azure-ad-b2c/
Signup and login is working fine, but password reset redirects to the same url as a successful login. For example: https://myapp.azurewebsite.net/.auth/login/aad/callback
But given that the user not logged in this redirect fails with a 401 Unauthorized
error.
I have set up a password reset policy in my Azure B2C tenant but there seems to be no way to redirect the Easy Auth system to it.
Note that I also enabled password reset for the B2C in the classic portal.
What am I missing here?
Update:
When I use a SignIn policy only (not a combined SignUp/SignIn policy) the password reset works fine. These two policies seem to do different things.
Forgot Password?
and the other saysCan't access account?
They do two different things. – Bill Noel