I have a web app which is based on django (version 2.0+), the user can only login with third party authentication.
My question is like, can I still use the technique like:
if request.user.is_authenticated():
(source: How to check if a user is logged in (how to properly use user.is_authenticated)?)
to see if user is logged in?
Some background: After third party login, user profile is available. At the moment the structure of the database is still at design phase.