-
Notifications
You must be signed in to change notification settings - Fork 117
User Authentication Missing Credentials error (and subsequent nav authorization) #508
Comments
Actually, if this is a 'I don't really know how to use this, is this correct' question it belongs on SO not here... if that is indeed the case I can close this issue, but I thought I was following the docs. |
When default.json is set to use 'username' as the usernameField it outputs my Windows username, 'Matt'. Surprisingly, this is intended behaviour because feathers-configuration checks to see if a value is a part of the OS environment: https://github.com/feathersjs/feathers-configuration/blob/master/src/index.js#L26
Workaround for OPChange the username field or manually set this configuration in authentication.js, for example:
|
You can also escape the configuration value in your |
Thanks guys! |
@matthewshirley thanks a lot. It took me so much time! |
For information, this also happens for feathers applications managed by PM2 as it adds the environment variable |
Steps to reproduce
Clone this repo, yarn/npm install, tsc, npm start.
Add user in MySQL (might need to change permissions first, I already have a user created with
pass
as password before so I added authentication hook to creation).In browser (or postman) pop open dev tools and either manually use authentication with a user in the MySQL table, or use
checkCreds(grabCreds())
functions with form populated. Or uncomment the form submission, I have alogin
route defined that should be working and redirect todonuts
test page...Expected behavior
Authentication calls should return an accessToken, and subsequent routing should be authenticated. Should subsequent manual URL navigation work too? (If I make a call on the client to authentication service, and get a token back, should I then be able to manually navigate to
/donuts
?)Actual behavior
Currently the repo returns a
Bad Request: Missing credentials
400 error.System configuration
Module versions:
NodeJS version:
Node v6.10.2
NPM v4.5.0
Operating System:
Win 10 Version 1607
Browser Version:
Chrome Version 58
I am trying to go off of this example but I don't know if I've diverged too far. I am following these two issues but I don't know if those are what I need.. I'm mostly confused.
If I did something wrong let me know I'm fairly certain there's some config I must have messed up. I had the initial authentication working yesterday, but was trying to add cookies so that the server would remember users on refresh/#... and now auth doesn't seem to work at all.
The repo was based off of what feathers CLI gave me, but I've been tinkering with it a lot to add
express-vue
, routing, and angular so I may have moved something I shouldn't have.But, I did get all of those pieces mostly working! If I remove the authorization from the routes
Donuts
actually works - which is amazing! I really love that 🎆 I just started using feathers this week and I've made so much progress (and it was nice to immediately get a REST client) - good job friends!The text was updated successfully, but these errors were encountered: