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
ATM, we can't pass any addition params to the passive auth request triggered via trySignInSilently.
This capability is there in the signIn hook. We need to give the same experience in trySignInSilently.
example:
// Include additional parameters in silent sign-intrySignInSilently({fidp: "LOCAL",customParam: "value"}).then((response)=>{// Perform actions based on responseif(!response){// If silent sign-in fails, fallback to regular sign-insignIn();}});
The text was updated successfully, but these errors were encountered:
brionmario
changed the title
Introduce the support to send additional params to the URL of trySignInSilently
Introduce the support to send additional auth params via trySignInSilentlyMar 16, 2024
Describe the improvement
ATM, we can't pass any addition params to the passive auth request triggered via
trySignInSilently
.This capability is there in the
signIn
hook. We need to give the same experience intrySignInSilently
.example:
The text was updated successfully, but these errors were encountered: