change with access token to jwt
# support-questions
i
Does anything significant change with access tokens now being JWTs? Is there any behavioral change in how SuperTokens works, or is this basically just a change in the format of the token alone?
r
hey @ITEnthusiasm it's more or less the same. The only one diff is that on the frontend if you want the JWT, instead of getting it from the access token payload (like you used to), you now get it using
Session.getAccessToken()
.
But the concepts and everything is the same really. Just code changes more or less based on our changelog
i
Okay sounds cool. Didn't know if it would impact things like session revoking but it sounds like it doesn't. Thanks!
r
it won't impact any of that.. it's all the same