Hi @Huig Guijt
Thank you for posting your question in the Q&A Forum.
While the Remote Connectivity Analyzer can be strict with header validation, the specific error about the missing authorization URL generally indicates that the ActiveSync virtual directory is not correctly advertising OAuth.
This can occur even when the Hybrid Configuration Wizard and Test-OAuthConnectivity both succeed. Those tests confirm the OAuth trust, but Hybrid Modern Authentication for Outlook Mobile also requires the ActiveSync (EAS) virtual directory to broadcast OAuth support.
Please verify the following on your Exchange server (run in an elevated Exchange Management Shell):
Get-ActiveSyncVirtualDirectory | FL Identity, ExternalURL, InternalAuthenticationMethods, ExternalAuthenticationMethods
If OAuth is not listed in either InternalAuthenticationMethods or ExternalAuthenticationMethods, HMA will not initiate correctly for Outlook Mobile even if the hybrid trust is fully established.
You can enable OAuth for both methods with:
Set-ActiveSyncVirtualDirectory -Identity "ServerName\Microsoft-Server-ActiveSync (Default Web Site)" `
-InternalAuthenticationMethods Basic,OAuth `
-ExternalAuthenticationMethods Basic,OAuth
iisreset
Note: Replace ServerName with your actual server’s name. This RCA error is commonly seen when OAuth is enabled at the organization level but not on the EAS virtual directory.
For deeper validation, you may also use Microsoft’s Test‑HMAEAS script, which provides more precise insight into how the Bearer challenge is returned: https://microsoft.github.io/CSS-Exchange/Hybrid/Test-HMAEAS/
Feel free to update the thread with the result of the OAuthAuthentication check.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.