An Azure service that provides an event-driven serverless compute platform.
Hello Sean !
Thank you for posting on MS Learn Q&A.
I would not rely on direct deep links like in your case from allowed external redirect URLs anymore and even when I check the official docs I couldn't find anything related to the custom URI schemes for this setting while it is explicitly distinguish post_login_redirect_uri from the identity provider redirect URI which is another hint that Easy Auth expects a normal web URL at that stage.
As a workaround you can try :
/.auth/login/aad?post_login_redirect_uri=https%3A%2F%2Fyourdomain.com%2Fauth%2Fbridge
and then make https://yourdomain.com/auth/bridge do the final hop to your app:
<script>
window.location.replace("acudose://easyauth.callback");
</script>
so this way you keep Easy auth on a supported https redirect then hands off to your custom scheme yourself.