Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure B2C - Multiple Reply Url

Tags:

azure-ad-b2c

I created a Native Client App with Web/WebAPI in Azure B2C

I want to add multiple reply urls with the same domains for testing and qa etc.

e.g.

https://site.domain.com https://site-qa.domain.com/

But got error: Cannot update Application: One of the reply URLs provided for application 'My App' is on a domain different from other reply URL(s). Plese make sure all reply URLs other than localhost are on the same root domain.

Also note: 'Plese' is miss-spelled

like image 494
Haroon Avatar asked Dec 06 '15 22:12

Haroon


People also ask

What is reply URL in SAML?

The Reply URL is used by the app to redirect users to the portal after the authentication succeeds. If your portal uses a custom domain name, you might have a different URL than the one provided here.

What is azure reply URL?

A redirect URI, or reply URL, is the location where the authorization server sends the user once the app has been successfully authorized and granted an authorization code or access token.


1 Answers

It seems to be an issue, I have created a request on the feedback portal. You can vote it and wait for the Development Team to fix it.

[Update]: As explained in the updated documentation about restrictions on redirect URIs, there is a quick workaround: first add the domain as a redirect URI and then add the sub-domains, like so:

  • https://example.com

  • https://client1.example.com

  • https://client2.example.com

like image 66
SalvatoreGarrubba Avatar answered Oct 08 '22 12:10

SalvatoreGarrubba