前提・実現したいこと
Djangoとsocial-auth-app-djangを用いてTwitterでのログインを実現したいです。
こちらのサイトを参考にして制作していたところ、エラーが発生しました。
エラーメッセージ
Traceback (most recent call last): File "/opt/peerclub/lib/python3.6/site-packages/django/core/handlers/exception.py", line 34, in inner response = get_response(request) File "/opt/peerclub/lib/python3.6/site-packages/django/core/handlers/base.py", line 115, in _get_response response = self.process_exception_by_middleware(e, request) File "/opt/peerclub/lib/python3.6/site-packages/django/core/handlers/base.py", line 113, in _get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) Exception Type: TypeError at /account/login/ Exception Value: __init__() takes 1 positional argument but 2 were given
該当のソースコード
python
1# アプリのurls.py 2import django.contrib.auth.views 3from django.urls import path,include 4from . import views 5app_name='account' 6 7urlpatterns=[ 8 #path('top/',views.top_page, name="top"), # リダイレクト 9 path('login/', # ログイン 10 django.contrib.auth.views.LoginView.as_view(template_name = 'account/login.html'), 11 name='login'), 12 path('logout/', # ログアウト 13 django.contrib.auth.views.LogoutView.as_view(template_name = 'account/login.html'), 14 name='logout'), 15] 16
試したこと
TwitterのCallback URLは設定済みです。
参考とされるページと提示されたソースと内容が異なるので、なぜ変えているのか、同じ場合はうまくいくのか、うまくいかないならどのような問題が出たのかをご提示されると、回答が得られやすいのではないかと思いました。
あなたの回答
tips
プレビュー