User from mobile hybrid app access private account data...PHP/MySQL

PHP/MySQL SESSIONS KEEP PRIVATE ACCOUNT DATA
To keep track User: My Account settings in a web site with User members area we use SESSIONS on the server… for A web app,…

for mobile hybrid app is exactly the same…? If Not , what differs? I refer user from mobile hybrid app access private account data…

Common solution is to use auth tokens
When user logs in from the app, server creates unique random string (token), stores it in database (with expiration limit) and sends it back to the app. Then app includes that token in each request and server knows that request came from authorized user

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.