As we know there are three tokens involved in OpenIDConnect:
- Access Tokens in OIDC are by default, a random unique string, not encoded using JWT.
- ID token is encoded using JWT
- Refresh Tokens
we usually place the ID token in the cookie in httpOnly mode.
My question is, where is the recommended storage of Access tokens? surely you need to store them in the app side.