Skip to content
This repository was archived by the owner on Mar 22, 2022. It is now read-only.

Cannot authenticate #14

Closed
dbkaplun opened this issue Dec 1, 2015 · 2 comments
Closed

Cannot authenticate #14

dbkaplun opened this issue Dec 1, 2015 · 2 comments

Comments

@dbkaplun
Copy link

dbkaplun commented Dec 1, 2015

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.

Request:

GET /api/streams/1 HTTP/1.1
Host: localhost:4000
authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MSwiZW1haWwiOiJhZG1pbkBleGFtcGxlLmNvbSIsImFkbWluIjowLCJjcmVhdGVkX2F0IjpudWxsLCJ1cGRhdGVkX2F0IjpudWxsLCJpYXQiOjE0NDg5MzM1NzcsImV4cCI6MTQ0ODk2OTU3N30.RpC2hOsg5seNJxbvosY6pBf1WC1zC9IC_An_I0ZCsTI
Cache-Control: no-cache
Postman-Token: 31135068-0a30-96bf-02df-5f4b750479ef
@marshallswain
Copy link
Member

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:

var feathers = require('feathers');
var hooks = require('feathers-hooks');
var cors = require('cors');
var bodyParser = require('body-parser');
var mongoose = require('mongoose');
var MongooseService = require('feathers-mongoose');
var feathersAuth = require('feathers-authentication').default;
var dbURI = require('./db');
var app = 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);
var options = {connection: mongoose.connections[0]};

var db = 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', new MongooseService('Account', require('./services/accounts'), options));
app.use('preferences', new MongooseService('Preference', require('./services/preferences'), options));
app.use('users', new MongooseService('User', require('./services/users'), options));

app.configure(feathers.errors());

var port = process.env.VCAP_APP_PORT || 8080;
app.listen(port, function(){
  console.log('application server listening on port ' + port);
});

@dbkaplun
Copy link
Author

dbkaplun commented Dec 1, 2015

You're absolutely right, I was instantiating the service before .configure(feathersAuth()). Nice catch!

@dbkaplun dbkaplun closed this as completed Dec 1, 2015
# for free to subscribe to this conversation on GitHub. Already have an account? #.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants