quorum
    Preparing search index...

    Function getAccessToken

    • Retrieve the currently stored access token.

      Returns null if no token is stored or if the store operation fails. Does not validate expiry; use isTokenValid() to ensure the token is still active.

      Returns Promise<string | null>

      The stored access token string, or null if not found.

      const token = await getAccessToken();
      if (token) {
      // Use token in API requests
      }