-
Notifications
You must be signed in to change notification settings - Fork 167
Closed
Description
Hi, when i try to login to my application in safari, the first login attempt always fails:
When i reload the page everything works.
All other browsers work just fine
We are using the package version 7.25.5
Our configuration:
export const configurationIdentityServer: OidcConfiguration = {
client_id: import.meta.env.VITE_APP_OIDC_CLIENT_ID,
redirect_uri: `${window.location.origin}/authentication/callback`,
silent_redirect_uri: `${window.location.origin}/authentication/silent-callback`, // Optional activate silent-signin that use cookies between OIDC server and client javascript to restore the session
authority_time_cache_wellknowurl_in_second: 60 * 60,
refresh_time_before_tokens_expiration_in_second: 40,
scope: 'openid roles profile email',
authority: import.meta.env.VITE_APP_OIDC_AUTHORITY,
service_worker_relative_url: '/OidcServiceWorker.js',
service_worker_only: true,
token_renew_mode: TokenRenewMode.access_token_or_id_token_invalid
};
Metadata
Metadata
Assignees
Labels
No labels