Hi, I'm using supertokens in an express.js backend and am experiencing a problem,
when trying to test my API with Postman (as explained [here](
https://supertokens.com/docs/emailpassword/testing/testing-with-postman).
I am able to signup and login via Postman and do have a token as cookie, but when calling a GET endpoint of the express server (which is protected with verifySession), I get a 401 Unauthorized with the body:
"{"message": "try refresh token"}"
. Refreshing the token still results in the same error.
I'm running supertokens-core (v6.0.0) in a docker container, the backend uses supertokens-node (v14.1.3).
I turned on the debug logs and this is logged when making said request:
Googling didn't help, maybe you guys know where the problem lies 😁