Skip to main content

Type Alias: GetUserData()

GetUserData = () => Promise<Nullable<UserData | AuthError>>

Retrieves the current user's data or session information. Use this method to check if a user is currently authenticated and to access their profile information.

This is useful for determining login state, personalizing UI elements, and checking permissions before performing authenticated operations.

Returns

Promise<Nullable<UserData | AuthError>>

A promise that resolves to UserData when a user is authenticated, null when no user is authenticated, or AuthError on failure

Example

window.mimeeqAuth.authorization.getUserData()
.then((user) => {
if (user && !('name' in user)) {
// User is logged in
console.log(`Hello, ${user.firstName}!`);
// Update UI for logged-in state
} else {
// No user is logged in
// Show login button or redirect to login page
}
})
.catch((err) => {
console.error('Error checking authentication status:', err);
});