I'm following this guide to request the access token to access at the Metabase API. As the guide says, i run the following command to get the access token:
curl -X POST \
-H "Content-Type: application/json" \
-d '{"username": "person@metabase.com", "password": "fakepassword"}' \
http://localhost:3000/api/session
Obviously i'm using my username and password.
But when i run this curl, the output is the following:
{"errors":{"password":"did not match stored password"}}
Where am i wrong?