So it is a little cumbersome, but you can do the f...
# general
r
So it is a little cumbersome, but you can do the following: - Switch off JWT signing key rotation: https://supertokens.io/docs/session/common-customizations/sessions/jwt-signing-key-rotation (set
ACCESS_TOKEN_SIGNING_KEY_DYNAMIC
to
false
) - Go to the database >
key_value
table > change the value of
"access_token_signing_key"
to ;. For example, if the public key is "pubkey" and private key is "prikey", then the value in the db should be "pubkey;prikey". The way we generate public and private keys can be seen here: https://github.com/supertokens/supertokens-core/blob/master/src/main/java/io/supertokens/utils/Utils.java#L189