Hello,
In my application we use RPM to create and modify avatars.
We are doing all this in guest mode (= without creating an RPM account for the user).
When we create and customize our avatar in the same game session. Everything works fine.
When trying to customize (with an Update operation) an avatar we created in a previous session, the server responds with an unauthorized error.
I deduce that the token used to identify a guest user has a limited time life.
Am I right?
We don’t want to bother users with creating a RPM account.
But we want to let them customize their avatar when they want.
Our previous solution was to use a photo and some avatarProperties to recreate an avatar each time the user wants to customize. It worked.
Right now we want to avoid sending the photo in the customization phase.
But updating the avatar with avatarProperties and no photo, force us to rely on an avatarId.
And in guest mode the avatarID seems to have a limited lifetime which make it not very reliable. So after a while, server refuses the update operation with an unauthorized error.
Is there a way to update avatars without photo and staying in guest mode ?