Hi
I've implemented login, register and logout API with spring boot.
I'm testing this with postman and flow is next:
- register user
- login with email and password -> get accessToken and refreshToken in response
- check can i access with accessToken to some page that need authorization
- after that works i go to logout api and send refreshToken as param, but after it return me status OK (200) then I try again with same accessToken access to API that need authorization and it return me data instead of error that I'm unauthorized
What could be problem? @dan