
Users were unable to login to Process Studio using SSO authentication and encountered the below error from Azure AD:
AADSTS50011: The reply URL specified in the request does not match the reply URLs configured for the application.
Additionally, Process Studio logs showed:
Authentication : HTTP Status - 400
SSO Callback server started on port 2611

AADSTS50011: The reply URL 'http://localhost:2611/callback' specified in the request does not match the reply URLs configured for the application.
Process Studio Version: 8.4.0
Authentication Protocol: SAML 2.0
Identity Provider: Microsoft Azure AD

Process Studio uses a local callback server during the SSO authentication flow and sends the below redirect URI during login:
http://localhost:2611/
However, this URL was not configured in the Azure AD application Reply URL/Redirect URI settings. Due to this mismatch, Azure AD rejected the authentication request and returned HTTP 400 with error code AADSTS50011.
SSO Callback server started on port 2611
Authentication : HTTP Status - 400
This confirmed that:
Process Studio started successfully.
The local SSO callback server was running correctly.
Authentication failed at Azure AD validation stage due to redirect URI mismatch.

Add the localhost callback URL in the Azure AD application Reply URL/Redirect URI configuration.
http://localhost:2611/
Login to Azure Portal.
Navigate to:
Azure Active Directory → App Registrations
Open the required application.
Go to:
Authentication
Under Redirect URIs / Reply URLs, add:
http://localhost:2611/
Save the configuration.
Restart Process Studio and retry login.
After adding the localhost callback URL in Azure AD:
SSO login started working successfully.
Users were able to authenticate in Process Studio without errors.
The Redirect URI must match exactly.
Ensure no firewall or proxy restrictions block localhost port 2611.
Browser cache/session cleanup may be required after configuration changes.