現在、social-auth-app-djangoによるSNS認証について学習、実装しようとしています。以下のサイトを参考にさせていただきました。
参考リンク
また、作成したコードが以下の通りです。
python
1(settings.py) 2 3from pathlib import Path 4import os 5 6# Build paths inside the project like this: BASE_DIR / 'subdir'. 7BASE_DIR = Path(__file__).resolve().parent.parent 8 9 10# Quick-start development settings - unsuitable for production 11# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/ 12 13# SECURITY WARNING: keep the secret key used in production secret! 14SECRET_KEY = 'django-insecure-#5=as9sp#8$7)jz9!jk_mwf-j-$=85viuhv0#@gd=04sqznrm(' 15 16# SECURITY WARNING: don't run with debug turned on in production! 17DEBUG = True 18 19ALLOWED_HOSTS = [] 20 21 22# Application definition 23 24INSTALLED_APPS = [ 25 'django.contrib.admin', 26 'django.contrib.auth', 27 'django.contrib.contenttypes', 28 'django.contrib.sessions', 29 'django.contrib.messages', 30 'django.contrib.staticfiles', 31 'social_django', # 追加 32] 33 34MIDDLEWARE = [ 35 'django.middleware.security.SecurityMiddleware', 36 'django.contrib.sessions.middleware.SessionMiddleware', 37 'django.middleware.common.CommonMiddleware', 38 'django.middleware.csrf.CsrfViewMiddleware', 39 'django.contrib.auth.middleware.AuthenticationMiddleware', 40 'django.contrib.messages.middleware.MessageMiddleware', 41 'django.middleware.clickjacking.XFrameOptionsMiddleware', 42] 43 44ROOT_URLCONF = 'line_login_test.urls' 45 46TEMPLATES = [ 47 { 48 'BACKEND': 'django.template.backends.django.DjangoTemplates', 49 'DIRS': [os.path.join(BASE_DIR, "templates")], 50 'APP_DIRS': True, 51 'OPTIONS': { 52 'context_processors': [ 53 'django.template.context_processors.debug', 54 'django.template.context_processors.request', 55 'django.contrib.auth.context_processors.auth', 56 'django.contrib.messages.context_processors.messages', 57 # 追加 58 "social_django.context_processors.backends", 59 "social_django.context_processors.login_redirect", 60 ], 61 }, 62 }, 63] 64 65WSGI_APPLICATION = 'line_login_test.wsgi.application' 66 67 68# Database 69# https://docs.djangoproject.com/en/3.2/ref/settings/#databases 70 71DATABASES = { 72 'default': { 73 'ENGINE': 'django.db.backends.sqlite3', 74 'NAME': BASE_DIR / 'db.sqlite3', 75 } 76} 77 78 79# Password validation 80# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators 81 82AUTH_PASSWORD_VALIDATORS = [ 83 { 84 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', 85 }, 86 { 87 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', 88 }, 89 { 90 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', 91 }, 92 { 93 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', 94 }, 95] 96 97AUTHENTICATION_BACKENDS = ( 98 'social_core.backends.line.LineOAuth2', # LINE認証用 99 'django.contrib.auth.backends.ModelBackend', 100) 101 102# 追加 103LOGIN_REDIRECT_URL = "/" 104LOGOUT_REDIRECT_URL = "/" 105 106 107# Internationalization 108# https://docs.djangoproject.com/en/3.2/topics/i18n/ 109 110LANGUAGE_CODE = 'en-us' 111 112TIME_ZONE = 'UTC' 113 114USE_I18N = True 115 116USE_L10N = True 117 118USE_TZ = True 119 120 121# Static files (CSS, JavaScript, Images) 122# https://docs.djangoproject.com/en/3.2/howto/static-files/ 123 124STATIC_URL = '/static/' 125 126# Default primary key field type 127# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field 128 129DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' 130
python
1(urls.py) 2from django.contrib import admin 3from django.contrib.auth import views as auth_views 4from django.urls import path, include 5 6urlpatterns = [ 7 path('admin/', admin.site.urls), 8 path('', include('social_django.urls', namespace='social')), # 追加 9 path("logout/", auth_views.LogoutView.as_view(), name="logout"), # 追加 10] 11
html
1<h1>トップページ</h1> 2 3{% if user.is_authenticated %} 4 <p>ユーザー名: {{ user.username }}</p> 5 <a href="{% url 'logout' %}">ログアウト</a> 6{% else %} 7 <a href="{% url 'social:begin' 'line' %}">LINEでログインする</a> 8{% endif %}
また、ツリーは以下の通りです。
. ├── db.sqlite3 ├── line_login_test │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── templates └── index.html
参考にしたURLを丸写しして動かしてみたのですが、動かしたところ、Page not found (404)エラーが出てしまいました。social_djangoというappを作成し、その中でurlsとviewを作成する必要があるのかと思ったのですが、それでもうまくいきませんでした。web周りの開発については最近学習し始めたばかりのため、解決策を見出せない状態です。原因について教えていただけるとありがたいです。よろしくお願いします。
あなたの回答
tips
プレビュー