You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 22, 2022. It is now read-only.
Running with DEBUG=feathers-authentication, I can see "feathers-authentication setting up feathers-authentication +0ms" in the CLI output, but I don't see "Got an Authorization token" anywhere (src/index.js:93). Also the params object only has an empty query object, no user property.
With those headers, you should be seeing the message from line 93, unless your services are being used before your auth plugin. Here is a server I have working. Maybe you can compare your server setup and figure out the cause:
varfeathers=require('feathers');varhooks=require('feathers-hooks');varcors=require('cors');varbodyParser=require('body-parser');varmongoose=require('mongoose');varMongooseService=require('feathers-mongoose');varfeathersAuth=require('feathers-authentication').default;vardbURI=require('./db');varapp=feathers();app.configure(feathers.rest()).configure(feathers.socketio()).configure(hooks()).options('*',cors()).use(cors()).use(bodyParser.json()).use(bodyParser.urlencoded({extended: true})).configure(feathersAuth({secret: 'igotasecretivebeenhidingundermyskin',loginEndpoint: '/#',userEndpoint: '/users',usernameField: 'email'})).use(feathers.static(__dirname+'/public'));mongoose.connect(dbURI);varoptions={connection: mongoose.connections[0]};vardb=mongoose.connection;db.on('error',console.error.bind(console,'connection error:'));db.once('open',function(){console.log('Mongoose connected to '+dbURI);});/* SERVICES */app.use('accounts',newMongooseService('Account',require('./services/accounts'),options));app.use('preferences',newMongooseService('Preference',require('./services/preferences'),options));app.use('users',newMongooseService('User',require('./services/users'),options));app.configure(feathers.errors());varport=process.env.VCAP_APP_PORT||8080;app.listen(port,function(){console.log('application server listening on port '+port);});
Running with
DEBUG=feathers-authentication
, I can see "feathers-authentication setting up feathers-authentication +0ms" in the CLI output, but I don't see "Got an Authorization token" anywhere (src/index.js:93). Also theparams
object only has an emptyquery
object, nouser
property.Request:
The text was updated successfully, but these errors were encountered: