0
我使用羽毛框架,以我的應用程序的NodeJS和我已經在下列方式如何解碼jwt並從feathersjs中獲取此userId?
app.service('authentication').hooks({
before: {
create: [
authentication.hooks.authenticate(config.strategies),
function (hook) {
hook.params.payload = {
userId: hook.params.user.userId,
accountId: hook.params.user.accountId
};
return Promise.resolve(hook);
}
],
remove: [
authentication.hooks.authenticate('jwt')
]
}
});
做智威湯遜的創作現在我有疑問,如何從令牌使用JWT獲得用戶id解碼後的數據。