羽毛通过POST验证工作,但插座没有

时间:2017-05-10 16:25:39

标签: node.js authentication socket.io feathersjs

Here is a repo显示了我的最新进展,here is my configuration。现在看来repo现在甚至不用REST进行身份验证 - 虽然我认为套接字auth有些问题需要查看。

我配置了羽毛,能够使用Postman创建一个完全REST的用户,甚至可以获得一个身份验证令牌(我可以发布/验证以获取令牌,然后验证该令牌 - yay postman!yay REST api! )。

但是在浏览器中,这个故事太开心了。我可以使用find来获取数据,但authenticate只是给我错误。

在我的Google搜索中,我找到this post并将我的客户端javascript更新为this。我也尝试使用postman中的令牌执行jwt auth,但这会产生相同的Missing Credentials错误。 HALP!

代码传入......

app.js (仅显示订单的配置部分)

app.configure(configuration(path.join(__dirname, '..')))
  .use(cors())
  .use(helmet()) // best security practices
  .use(compress())
  .use(favicon(path.join(app.get('public'), 'favicon.ico')))
  .use('/', feathers.static(app.get('public')))
  .configure(socketio())
  .configure(rest())
  .configure(hooks())
  .use(bodyParser.json())
  .use(bodyParser.urlencoded({ extended: true }))
  .configure(services) // pull in all services from services/index.js
  .configure(middleware) // middleware from middleware/index.js
  .hooks(appHooks)

在服务中,我首先添加身份验证,它位于自己的文件中,看起来像这样 的 authentication.js

const authentication = require('feathers-authentication');
const jwt = require('feathers-authentication-jwt');
const local = require('feathers-authentication-local');
const authManagement = require('feathers-authentication-management');

module.exports = function () {

  const app = this;
  const config = app.get('authentication');

  // Set up authentication with the secret
  app.configure(authentication(config));
  app.configure(authManagement(config));
  app.configure(jwt());
  app.configure(local(config.local));

  // The `authentication` service is used to create a JWT.
  // The before `create` hook registers strategies that can be used
  // to create a new valid JWT (e.g. local or oauth2)
  app.service('authentication').hooks({
    before: {
      create: [
        authentication.hooks.authenticate(config.strategies)
      ],
      remove: [
        authentication.hooks.authenticate('jwt')
      ]
    }
  });

};

index.html (大部分被删除,只显示相关脚本)

let url = location.protocol + '//' + location.hostname + 
    (location.port
      ? ':' + location.port
      : '');

const socket = io(url);

const feathersClient = feathers()
  .configure(feathers.socketio(socket))
  .configure(feathers.hooks())
  .configure(feathers.authentication({ storage: window.localStorage }));

这是一个屏幕截图,显示了chrome调试器和邮递员的一些请求。 Showing chrome debugger err and success, and postman success

1 个答案:

答案 0 :(得分:2)

当default.json设置为使用' username'作为usernameField,它输出我的Windows用户名,' Matt'。这是因为feather-configuration检查值是否是OS环境的一部分。

https://github.com/feathersjs/feathers-configuration/blob/master/src/index.js#L26

usernameField as username

解决方法

在authentication.js中手动设置此配置,例如:

  // Set up authentication with the secret
  const localConfig = {
    'entity': 'users',
    'service': 'users',
    'usernameField': 'username',
    'passwordField': 'password'
  }; 

  app.configure(authentication(config));
  app.configure(local(localConfig));