[ Django ] 소셜 로그인 기능 구현하기 - 구글 로그인 (1)
[ Django ] 소셜 로그인 기능 구현하기 1. 장고 패키지 설치하기 pip install django-allauth 2. settings.py 추가 INSTALLED_APPS = [ # 앱 목록 추가 'django.contrib.sites', # allauth 관련 설정 'allauth' 'allauth.account', 'allauth.socialaccount', # 소셜로그인 제공 (구글, 카카오, 네이버 등) 'allauth.socialaccount.providers.google', ] # 튜플 추가 AUTHENTICATION_BACKENDS = ( 'django.contrib.auth.backends.ModelBackend', 'allauth.account.auth_backends.Authe..