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
{{ message }}
This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
When the user signs in the first time, we save accessToken and subjectId to localStorage. Then, on subsequent sing in attempts, we fetch those parameters and use them to initialize agent instance. However, if the user manually goes into browser settings and clears the subjectId, we won't have anywhere to get it from to initialize the agent instance. We need to add logic to fetch subjectId from the requestAccess response in this case (auth server returns both accessToken and subjectId in case user's keypair has already been used to register the user)
The text was updated successfully, but these errors were encountered:
When the user signs in the first time, we save
accessToken
andsubjectId
to localStorage. Then, on subsequent sing in attempts, we fetch those parameters and use them to initialize agent instance. However, if the user manually goes into browser settings and clears thesubjectId
, we won't have anywhere to get it from to initialize the agent instance. We need to add logic to fetchsubjectId
from therequestAccess
response in this case (auth server returns bothaccessToken
andsubjectId
in case user's keypair has already been used to register the user)The text was updated successfully, but these errors were encountered: