Tengo una app publicada para un grupo de trabajadores, unos tienen mas opciones que otros, pero quiero saber como puedo controlar que una persona que tiene todas las opciones abiertas, no le de su correo a otra le diga el pin que recibe para loguearse y la persona que no pueda tener acceso a todas las opciones las pueda tener, es decir serian 2 usuarios utilizando la misma cuenta en diferente dispositivo.
Existe alguna forma de controlar eso? muchas gracias
There isn’t a foolproof/built-in solution in Glide to do this securely.
I think your best bet is this. While Glide does not natively support device fingerprinting, you can create some fields in your user table to capture device-specific info when a user first logs in.
Then, the next times when there’s a log in, restrict access if the device info does not match what’s stored.
However, if a legitimate user wants to access the app from a new device (e.g., gets a new phone, uses a work computer, or logs in on a tablet), they’ll be blocked or forced to go through a manual process to update their device info.