Is there an easy way to implement guest accounts? Ie generate a token without signup and then convert to a signed up user later?
r
rp_st
05/27/2022, 10:38 AM
hey!
rp_st
05/27/2022, 10:40 AM
I would recommend that you make a JWT based session (using Session.createJWT function) that we have.
Then on sign in, you can get the JWT's payload and merge that with the session's access token payload.