We’re looking at implementing Realm in a mobile game (a text based RPG) for two reasons:
- Users can sync settings and progress on all devices
- We, as developers, can access user data for analytics and debugging purposes
My scenario is this:
A user encountered a bug in the game. His realm is synced, meaning that all game settings and process is available in our Atlas cloud. Now I want to access that user’s data in my own app in order to basically open the app as if I was the user in order to reproduce the bug.
Questions:
- Would I need to log in as the user in order to access the data, or could I somehow download his Realm to my app with some kind of admin credentials?
- Can I do this without writing back to the realm (altering the user’s data and progress in the game)