Hi, I need some event or filter where I can update expiration date of my token.
I can update my token in every action of the controller, but I want to update it in one place. It is possible?
Type: Posts; User: bms; Keyword(s):
Hi, I need some event or filter where I can update expiration date of my token.
I can update my token in every action of the controller, but I want to update it in one place. It is possible?
Hi,
I manually authenticate user and create token for my services
...
Authentication authentication = new UsernamePasswordAuthenticationToken(principal, null, grantedPermissions);
...