What is the main difference between TokenAuthentication and JWTAuthentication in Django REST Framework?
ATokenAuthentication uses simple tokens stored on the server; JWTAuthentication uses encoded tokens with expiry.
BTokenAuthentication requires username and password every request; JWTAuthentication does not.
CTokenAuthentication encrypts tokens; JWTAuthentication sends tokens as plain text.
DTokenAuthentication is only for web apps; JWTAuthentication is only for mobile apps.