アカウントを作成した後、ユーザーを自動的にログインさせようとしています。/auth/local/
作成したばかりのユーザーとパスワードを送信するようにリダイレクトする必要があります。
これは私のmiddleware/signup.js
'use strict';
module.exports = function(app) {
return function(req, res, next) {
const body = req.body;
// Get the user service and `create` a new user
app.service('users').create({
email: body.email,
password: body.password
})
// Then redirect to the login page
.then(user => app.post('/auth/local', function(req, res){
req.body(user);
}))
// On errors, just call our error middleware
.catch(next);
};
};
これはエラーを発生させません...ユーザーを作成した後の永遠の読み込みです。ヘルプ