Is it secure to use only the access token?
I’m using JWTs for authenticating users for my mobile and web applications in the same API.Both access_token and refresh_token have same expiration
Passport::tokensExpireIn(now()->addHours(1));
Passport::refreshTokensExpireIn(now()-&…