Reputation: 97
I have Authentication using Microsoft B2C already in place, Where we are passing URL (CallbackMFA) after successful login. Now I would like to pass Return URL so that my application desired web page will be loaded after successful login rather always loading Home page.
CallbackMFA has already ReturnURL logic written (if we have query string as ReturnURL, it will redirect else redirects to home) but whenever we send returnURL it is not recognized. Which is best place to pass returnURL
Upvotes: 0
Views: 754
Reputation: 4913
You can surely pass your redirect url
as the call back url in your Azure ADB2C Application as shown below. Ensure that the redirect url
configured as below in your application corresponds to the page that you want your application should be redirected to. Thus when you configure in this way the application should load the said page after successful authentication to Azure AD B2C.
https://tenantname.b2clogin.com/tenantname.onmicrosoft.com/oauth2/authresp
For more information please refer this Microsoft Documentation:Configure session behavior in Azure Active Directory B2C
Upvotes: 1