Fix redirect URI trailing slash to match Azure AD registration
Azure AD has /gsb/ registered, msalConfig had /gsb without slash. AADSTS50011 error due to mismatch. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
b7db37828b
commit
83bb8f8fa2
1 changed files with 2 additions and 2 deletions
|
|
@ -4,8 +4,8 @@ export const msalConfig: Configuration = {
|
|||
auth: {
|
||||
clientId: '9079054c-9620-4757-a256-23413042f1ef',
|
||||
authority: 'https://login.microsoftonline.com/e519c2e6-bc6d-4fdf-8d9c-923c2f002385',
|
||||
redirectUri: 'https://optical-dev.oliver.solutions/gsb',
|
||||
postLogoutRedirectUri: 'https://optical-dev.oliver.solutions/gsb',
|
||||
redirectUri: 'https://optical-dev.oliver.solutions/gsb/',
|
||||
postLogoutRedirectUri: 'https://optical-dev.oliver.solutions/gsb/',
|
||||
},
|
||||
cache: {
|
||||
cacheLocation: 'localStorage',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue