-
-
Notifications
You must be signed in to change notification settings - Fork 36
Description
Hi! @wagnerdelima, I have been using this lib from a long time now. I was implementing micro service architecture now but somehow I am facing dependency issues because of tokens I get. Since JWT Tokens are supposed to used everywhere to manage the user state but since we just get the following data
{items
"header":{
"alg":"HS256"
"typ":"JWT"
}
"payload":{
"token":"oJI1lNKgIV7ZboZ1H5jrFTBojO4uJh"
}
}
It is difficult to use the same authentication everywhere. Hence difficulty in using micro service architecture.
Proposed Solution :
- Able to manage the Secret which generate the JWT Token so we could handle authentication in any tech stack linked
- Able to add additional data in payload (ex: username, validity)
I am calling authentication API to check the token before handling request.
I have also made a extra custom JWT token to pass with another API to manage this. Both approaches worked for me. But it would be amazing if I manage this this lib
I am more than happy to work on this if you think it is something we should brainstorm upon.
