Do the tokens in these demos expire? For example in flask-google-login/app.py I see that the user info is stored in the session: session['user'] = token['userinfo'], but I don't see any logic that has the webpage logout the user once the token expires. Through what means does authlib verify token validity?
Do the tokens in these demos expire? For example in flask-google-login/app.py I see that the user info is stored in the session:
session['user'] = token['userinfo'], but I don't see any logic that has the webpage logout the user once the token expires. Through what means does authlib verify token validity?