Can someone explain to me why I get `Your token is...
# prisma-whats-new
r
Can someone explain to me why I get
Your token is invalid ...
when I try changing the default 'mysecret123' to something more elaborate?
n
The authentication tokens are generated based on the
secret
. If you change your secret, you need to generate a new token because the old one was generated based on the old
secret
(e.g. with the
prisma token
command)
👍 1
r
gotcha, thanks!
🙌 1