Reputation: 15981
According to the Azure Portal:
Redirect URIs must all belong to the same domain
But I can define the following:
Why doesn't that break the rules of "the same domain"?
Upvotes: 5
Views: 3004
Reputation: 14634
The redirect URIs must use the https:
scheme with a single domain name.
The special case is use of the http:
or https:
scheme with the localhost
host name.
This special case is allowed by the OpenID Connect Core specification for an authentication request.
Upvotes: 3