How to send JWT token in subsequent requests?
In my spring boot app, I am generating a JWT token during login/signup when login or signup endpoints are hit. Now, I want to use this same jwt token to be passed to all other requests in my project, otherwise without it I get forbidden – access denied message. I’m not able to implement it. Please guide.
spring security 6 403 error when i call an public endpoint
I’m trying to resolve a problem with Spring Security 6, but I can’t. In my SecurityConfig class, I implemented the securityfilter method with a signup endpoint at permitAll to not authenticate, but when I make a post call with /signup, I receive a 403.