I have setup this bundle https://github.com/thephpleague/oauth2-server-bundle to implement Oauth2 authentication.
It works perfectly for access token generation and refresh token generation with expiry time.
But when I generate new access token using grant_type
= refresh_token
, it also generates new refresh token and make older one to invalid.
So in this case refresh token never been expired as it generated new tokens and user will never be logout.