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
- `verifySignInCode`: Verifies the code, saves the auth token, and returns the user.
26
+
- `signInAnonymously`: Signs in anonymously, saves the auth token, and returns the user.
27
+
- `signOut`: Signs out the user and clears the auth token.
28
+
- Manages authentication token persistence internally using `HtKVStorageService`.
29
+
- Exposes `saveAuthToken(String token)`, `getAuthToken()`, and `clearAuthToken()` for direct token manipulation if needed, but these are typically handled by the main auth flow methods.
30
+
- Propagates standardized `HtHttpException`s from the underlying client and `StorageException`s from the storage service.
0 commit comments