Skip to main content
Answered

How to convert loginUnidentifiedUser to Registered user in React Native

  • February 18, 2025
  • 3 replies
  • 26 views

We are calling loginUnidentifiedUser() when user open the app without user login and if user logged in, then  calling 

Intercom.loginUserWithUserAttributes({
        userId: userId,
      })



but we are getting Error - Error in loginUserWithUserAttributes

 

Best answer by mateusz.leszkiewicz

Hi ​@seema.nagar – thanks for the follow-up and for sharing your concerns!

You’re absolutely right to refer to the Intercom documentation — Intercom does support transitioning from an unidentified user to an identified user while preserving conversations and attributes, as long as the transition is handled correctly.

Clarification on the Transition Behavior

By default, Intercom will automatically associate the existing anonymous session with the identified user when you call loginUserWithUserAttributes() — as long as you haven’t explicitly logged out beforehand.

That means:
    •    You should not call Intercom.logout() before logging in the identified user if you want to preserve the anonymous session’s data (like conversations or events).
    •    When loginUserWithUserAttributes() is called, Intercom merges the anonymous session into the identified one, maintaining continuity.

Best Practice for Seamless Transition

To ensure continuity without data loss:

// When the user is anonymous
Intercom.loginUnidentifiedUser();

// Later, when the user logs in
Intercom.loginUserWithUserAttributes({
  userId: loggedInUserId,
});

There’s no need to call Intercom.logout() in this flow. Logging out will wipe local session data, which is what we want to avoid in your case.

📌 Use Intercom.logout() Only When:
    •    You want to explicitly clear all local user data (e.g. when a user logs out of your app).
    •    You’re switching between two known users.

So in summary:
- To retain session data → go straight from loginUnidentifiedUser() to loginUserWithUserAttributes() without logging out.
- Do not call Intercom.logout() unless you’re intentionally clearing the session.

Let me know if you’d like help validating this behavior in your app — happy to assist!

Best,
Mat 🙌

View original
Did this topic help you find an answer to your question?

3 replies

mateusz.leszkiewicz
Intercom Team
Forum|alt.badge.img+5

Hi ​@seema.nagar It’s Mat from the Support Engineering Team 😀
 

The likely reason for this issue is conflict between an anonymous user session and an identified user session.

📌 Root Cause

1. Intercom does not automatically transition from an anonymous session to an identified session.

• When loginUnidentifiedUser() is called, Intercom creates a separate anonymous user session.

• When you try to log in a known user with loginUserWithUserAttributes(), the app is still in the anonymous session, causing an error.

2. You must clear the anonymous session before logging in a known user.

✅ Solution: Log Out Before Switching Users

 

Before calling loginUserWithUserAttributes(), explicitly log out the anonymous user:

Intercom.logout(); // Clears the existing anonymous session

Intercom.loginUserWithUserAttributes({
  userId: userId,
});

Updated Flow:

if (userIsLoggedIn) {
  Intercom.logout(); // Ensure a clean transition
  Intercom.loginUserWithUserAttributes({
    userId: userId,
  });
} else {
  Intercom.loginUnidentifiedUser(); // Keep anonymous session
}

🚀 Alternative: Check for Existing Sessions Before Login

 

To prevent unnecessary logouts, you can check if the user is already identified:

Intercom.getUserId((userId) => {
  if (!userId) {
    Intercom.loginUnidentifiedUser();
  }
});

Then, when a user logs in:

Intercom.getUserId((userId) => {
  if (userId !== loggedInUserId) {
    Intercom.logout();
    Intercom.loginUserWithUserAttributes({ userId: loggedInUserId });
  }
});

✅ Final Fix

1. Always call Intercom.logout() before loginUserWithUserAttributes().

2. Avoid calling loginUnidentifiedUser() if the user is logged in.

3. Use Intercom.getUserId() to check session state before switching users.

 

This should prevent session conflicts and resolve the error. Let me know if you need further debugging! 🚀


  • Author
  • New Participant
  • 1 reply
  • April 2, 2025


Thank you for your response!

As per the Intercom documentation, an unidentified user should automatically transition to an identified user, carrying over any attributes and conversations. However, based on your previous response, it seems like this transition does not happen automatically.
Please check below image
 



In our app, we need to maintain the continuity of the user’s session, ensuring that any data from the unidentified user (guest session) is retained when the user logs in. Since calling Intercom.logout() clears all local user data, we cannot use it before loginUserWithUserAttributes(), as it would disrupt this transition.

Can you clarify the best approach to ensure a seamless transition from an unidentified user to an identified user without losing conversations or attributes?
 


mateusz.leszkiewicz
Intercom Team
Forum|alt.badge.img+5

Hi ​@seema.nagar – thanks for the follow-up and for sharing your concerns!

You’re absolutely right to refer to the Intercom documentation — Intercom does support transitioning from an unidentified user to an identified user while preserving conversations and attributes, as long as the transition is handled correctly.

Clarification on the Transition Behavior

By default, Intercom will automatically associate the existing anonymous session with the identified user when you call loginUserWithUserAttributes() — as long as you haven’t explicitly logged out beforehand.

That means:
    •    You should not call Intercom.logout() before logging in the identified user if you want to preserve the anonymous session’s data (like conversations or events).
    •    When loginUserWithUserAttributes() is called, Intercom merges the anonymous session into the identified one, maintaining continuity.

Best Practice for Seamless Transition

To ensure continuity without data loss:

// When the user is anonymous
Intercom.loginUnidentifiedUser();

// Later, when the user logs in
Intercom.loginUserWithUserAttributes({
  userId: loggedInUserId,
});

There’s no need to call Intercom.logout() in this flow. Logging out will wipe local session data, which is what we want to avoid in your case.

📌 Use Intercom.logout() Only When:
    •    You want to explicitly clear all local user data (e.g. when a user logs out of your app).
    •    You’re switching between two known users.

So in summary:
- To retain session data → go straight from loginUnidentifiedUser() to loginUserWithUserAttributes() without logging out.
- Do not call Intercom.logout() unless you’re intentionally clearing the session.

Let me know if you’d like help validating this behavior in your app — happy to assist!

Best,
Mat 🙌


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings