Will a verified JWT token always ensure that user is authenticated when signed by an authentication server?

Prerequisites
I have a client application (CA), an authentication server (AS) and a resource server (RS).
The resources on the RS must be accessed and usable only by authenticated users which have the authorization to do so.
The AS and RS … Continue reading Will a verified JWT token always ensure that user is authenticated when signed by an authentication server?

Is storing access token in private data, refresh token in http-only cookie safe?

Backend: Django / Django Rest Framework, would be hosted at GCP k8s
Frontend: Angular, would be hosted at some CDN e.g Vercel
Authentication: JWT (https://github.com/jazzband/djangorestframework-simplejwt)

The frontend and backend would … Continue reading Is storing access token in private data, refresh token in http-only cookie safe?