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.
Using feathers-authentication 0.7.12.
In feathers-authentication\lib\middleware\express.js I found this code:
// Check the body next if we still don't have a tokenif(req.body.token){token=req.body.token;deletereq.body.token;}
And same for req.params. I wanted to ask why you are removing the token from everywhere? I tried to use a token field in POST body for my custom middleware, and I was confused a bit when all the time the token disappeared on server-side . Is there some security reason or ... ?
The text was updated successfully, but these errors were encountered:
Using feathers-authentication 0.7.12.
In feathers-authentication\lib\middleware\express.js I found this code:
And same for req.params. I wanted to ask why you are removing the token from everywhere? I tried to use a
token
field in POST body for my custom middleware, and I was confused a bit when all the time the token disappeared on server-side . Is there some security reason or ... ?The text was updated successfully, but these errors were encountered: