Thank you for your post!
I understand that you're trying to figure out the authorized Redirect URIs (reply URLs) within Azure AD when working with Azure AD App Registrations. To help point you in the right direction and add onto what was shared by Jimmy, I'll share my findings below.
Findings:
When it comes to Azure AD applications and their redirect URIs there are some restrictions to be aware of, but the overall supported schemes / formats will be HTTP and HTTPs.
- HTTPS: The HTTPS scheme (
https://
) is supported for all HTTP-based redirect URIs. - HTTP: The HTTP scheme (
http://
) is supported only for localhost URIs and should be used only during active local application development and testing.
For more info - Redirect URI (reply URL) restrictions and limitations
Additional Resources:
- Application Manifest - replyUrlsWithType attribute
- Configure the app manifest
- Restrictions on wildcards in redirect URIs
I hope this helps!
If you have any other questions, please let me know. Thank you for your time and patience throughout this issue.
If the information helped address your question, please Accept the answer. This will help us and also improve searchability for others in the community who might be researching similar information.