I get: {"message":"Invalid email or password.","user":false}
The other curl commands give me unauthorized. Even though I have a valid JWT token. I think it's a valid JWT token. I created a secret key and put it in passport.js. Then generated a JWT token from it at https://jwt.io. (is that correct?)
Maybe if you could post some sample curl commands that work for you it would be helpful.
I was able to POST the initial signup:
the user was created in my
tenant_1
database User table and the Account table was populated - coolbut when I try to extract the user:
I get:
{"message":"Invalid email or password.","user":false}
The other curl commands give me
unauthorized
. Even though I have a valid JWT token. I think it's a valid JWT token. I created a secret key and put it inpassport.js
. Then generated a JWT token from it athttps://jwt.io
. (is that correct?)Maybe if you could post some sample curl commands that work for you it would be helpful.
Btw: I'm using Postgres dialect in Sequelize.
Cheers, Dave