Jim Lane
Jim Lane

Reputation: 51

Workaround for Azure AD B2C redirect limits

Working with a client to create a new set of identity integrations using Azure AD B2C. All services are being developed around the identity platform, but one of the limitations we're running into is the max redirects with AAD B2C.

Client use case:

Current understanding is a limit of 256 whitelisted URIs we can have for each B2C tenant, but we would need many more to make this solution work. Are there any workaround for this scenario?

Upvotes: 0

Views: 170

Answers (1)

astaykov
astaykov

Reputation: 30903

You should consider using the state parameter when interacting with Azure AD / B2C in order to preserve information where exactly (which restaurant) should you redirect the end-user after authenticating.

The general documentation about Azure AD (relevant also to Azure AD B2C) is located here.

More concrete about the approach is discussed in the section Use a state parameter.

Upvotes: 1

Related Questions