Multi Device Login

I have an app that works both on tablet and phone I would like the user to be able to login on both devices but every time you login on one the session expires on the other.
How can I keep both devices logged in or use the same session on both.

Thanks in advance.

You need to use different installation ids on them. Do you have something like ParseInstallation.getCurrentInstallation().saveInBackground(); in your initialization?

Thank you for your reply, yes every device has a different installationID

As you can see in here, it shouldn’t destroy for different installation ids. Can you double check your database before logging in the second device that the session associated to the first device has an installation id associated to it and it’s different from the installation id on the second device? Also, can you share the code that you are using to log in? Any trigger in place related to user, login or session as well?