You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had the same problem when using version 2.0.1, I downgraded to version 1.12.1 and it worked fine, I just need to enable id_token in the application authentication section in Microsoft Entra ( Azure )
In react application
<MicrosoftLogin clientId={appConfigData.MICROSOFT_CLIENT_ID} authCallback={handleMicrosoftLoginSuccess} tenantUrl={appConfigData.MICROSOFT_TENANT_URL} redirectUri={appConfigData.APPLE_REDIRECT_URI} withUserData={true} prompt='consent' > <MicrosoftLoginButton type="button" fontWeight="bold"> <span className="relative left-[5px]"> <LoginButtonImage src={MicrosoftIcon} alt="Microsoft Login" /> </span> <span className="relative left-[20px]"> {t('microsoft')} </span> </MicrosoftLoginButton> </MicrosoftLogin>
this is the configuration provided and while signing up it is causing the double token API call causing double authentication call.
Could you tell how can we resolve that.
The text was updated successfully, but these errors were encountered: