Is there an easy way to implement guest accounts? ...
# support-questions
p
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
hey!
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.