Full Stack Brain
Full Stack Brain

Reputation: 485

azure b2c redirect uri override after registration

We are using a azure b2c signup custom policy. While user clicks on a register button from www.domain.com/register SPA to get to azure b2c register page , after successfull registeration we want user to be redirected to a page which is www.domain.com/editprofile

But currently the AzureB2c Signup policy returns user back to where they come from which is www.domain.com/register. is that possible to change it ?

Upvotes: 0

Views: 1812

Answers (1)

Harshita Singh
Harshita Singh

Reputation: 4870

  • You will have to set UsePolicyInRedirectUri in Metadata of Custom Policy to true.
  • Under Custom policies, select <You_Policy> and set the Reply URL you want.

Resources:

Upvotes: 1

Related Questions