User Management

Options
Hello,
Let's just say that the User of my app logins into the app and that results into an AuthToken that lasts for a day (by default). I want the data that have to do with him to appear into a tab (let's call it profile). So since he logged in I can refer him through the auth.id variable (since his login provided me with the AuthToken). And I am able to keep doing that as long as the session is active (supposing the AuthToken doesn't expire). When he closes the app the session ends. How can I refer to him again (so that he will see once again those data referring to him in the Profile tab) without the need of him to provide his login credentials every time he opens the app?

Comments