You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that the game is playable on both desktop & mobile, the user experience of switching browsers is not great, because dfx uses browser's localstorage to store user identity (keypairs), and there is no convenient way to use the same identity across different browsers. We need a solution to allow players to log into their accounts, regardless of their devices.
The text was updated successfully, but these errors were encountered:
One solution is to offer user to "lock" account on an existing browser, and then "unlock" it from another one, using a temporary passcode. Of course the passcode has to be entered by the user, and hashed on the client side, before being recorded on the server. This is similar to introducing a password, except that it is temporary, and it maintains the "one device <-> one user" mapping.
An alternative is to support "many devices <-> one user", but still maintain "one device <-> one game". The operation wouldn't be "lock/unlock", but more like "authorize"or something similar. Then the passcode can be automatically generated, or even a QR code.
Now that the game is playable on both desktop & mobile, the user experience of switching browsers is not great, because dfx uses browser's localstorage to store user identity (keypairs), and there is no convenient way to use the same identity across different browsers. We need a solution to allow players to log into their accounts, regardless of their devices.
The text was updated successfully, but these errors were encountered: