Hello guys, having some problems here. Trying to d...
# prisma-whats-new
p
Hello guys, having some problems here. Trying to do queries from playground directly to my db give me back this error:
Copy code
{
  "code": 3015,
  "requestId": "api:api:cjd2xd7dq08r70141wfdhm8y8",
  "error": "Your token is invalid. It might have expired or you might be using a token from a different project."
}
. For some reason, requests to my db dont include Authorization header, while doing queries from my app works fine and Authorization header is included
j
In playground at the bottom, there is Headers tab. Put there {"Authorization":"Bearer <token>"} Run ``prisma token`` in cli to get <token>
p
Lol, magic... Thx !
👍 1
m
You can also use
disableAuth: true
property in`prisma.yml` for debugging purposes