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'm using the import, export feature based on the provided sample
The data import works fine, but if I try to sync with the db or refresh the claims, I get a websocket error:
I made some changes recently that synced with the server, then tried importing a backup from about a month ago where my license was expired. But it seems like if the access token is expired, it throws this error
Is that error expected in this case or is there something I might be doing incorrectly?
The text was updated successfully, but these errors were encountered:
The private key, which is used to authorize refresh token requests, is not exportable (for security reasons) so when it's imported you won't get a valid CryptoKey back. We should probably detect this use case better and require reauthentication when this happens. A workaround is to delete the refreshToken and the private / public key pairs from the $logins table entry holding your user info. Maybe use a transform callback when importing or delete this data directly after import. This should lead to a reauthentication flow
I'm using the import, export feature based on the provided sample
The data import works fine, but if I try to sync with the db or refresh the claims, I get a websocket error:
I made some changes recently that synced with the server, then tried importing a backup from about a month ago where my license was expired. But it seems like if the access token is expired, it throws this error
Is that error expected in this case or is there something I might be doing incorrectly?
The text was updated successfully, but these errors were encountered: