Hello guys, I am using Supertokens with MongoDB Backend, I have configured everything according to the Docs, And now when I try to SignIn, I am shown "Something went Wrong" Error. So I have checked the Logs from the docker container, and I see the attached errors. I am able to verify that both key_value pair, and jwt_signing_keys collections are created.
Also attaching the supertokens-core docker compose config for your reference:
supertokenscore:
container_name: supertokenscore
image: registry.supertokens.io/supertokens/supertokens-mongodb
restart: always
networks:
- localnw
environment:
SUPERTOKENS_PORT: 3568
MONGODB_CONNECTION_URI: mongodb://user:password@0.0.0.0:27017
MONGODB_DATABASE_NAME: testdb
PASSWORDLESS_MAX_CODE_INPUT_ATTEMPTS: 2
PASSWORDLESS_CODE_LIFETIME: 300000
REFRESH_TOKEN_VALIDITY: 15
ACCESS_TOKEN_VALIDITY: 300
ports:
- "3568:3568"