<@!604820426681745409> is there a way to get raw ...
# support-questions-legacy
r
@User > is there a way to get raw jwt token on frontend? is access token a full jwt token? The access token is in an
httpOnly
cookie which means the JS on the frontend can't read it. This is done for security purposes (preventing token theft via XSS). If you want just the payload / user info on the frontend, you can see https://test.supertokens.io/recipe-redirect?to=common-customizations/sessions/user-information-front-end And if you really want the access token itself on the frontend, you can create an API that does session verification and returns the access token as a response (but I wouldn't recommend it).