HerokuでTwitter認証が上手くいかないです。
Twitterの認証画面まではいくのですが、自分のwebサイトに移動しようとするとServer Error (500)と表示されます。
Twitter Developersの設定では
WebサイトURLに
https://hogehoge.herokuapp.com
Callback URLsに
https://hogehoge.herokuapp.com/auth/complete/twitter/
Callback URLsはこれ以外を試すと認証画面にすらいきません
リダイレクト先の設定が悪いのでしょうか?
何か考えられることはあるでしょうか?教えていただけないでしょうか?
settings
1 2INSTALLED_APPS = [ 3 'map', 4 'accounts', 5 'django.contrib.admin', 6 'django.contrib.auth', 7 'django.contrib.contenttypes', 8 'django.contrib.sessions', 9 'django.contrib.messages', 10 'django.contrib.staticfiles', 11 'social_django', #追加 12 'cloudinary', 13 'cloudinary_storage', 14] 15 16TEMPLATES = [ 17 { 18 'BACKEND': 'django.template.backends.django.DjangoTemplates', 19 'DIRS': [ 20 os.path.join(BASE_DIR, 'templates'), 21 ], 22 'APP_DIRS': True, 23 'OPTIONS': { 24 'context_processors': [ 25 'django.template.context_processors.debug', 26 'django.template.context_processors.request', 27 'django.contrib.auth.context_processors.auth', 28 'django.contrib.messages.context_processors.messages', 29 'social_django.context_processors.backends', #追加 30 'social_django.context_processors.login_redirect', #追加 31 ], 32 }, 33 }, 34] 35 36AUTHENTICATION_BACKENDS = [ 37 'social_core.backends.google.GoogleOAuth2', #Google 38 'social_core.backends.twitter.TwitterOAuth', #Twitter 39 'social_core.backends.facebook.FacebookOAuth2', #Facebook 40 'django.contrib.auth.backends.ModelBackend', 41] 42 43LOGIN_REDIRECT_URL = '/' 44SOCIAL_AUTH_LOGIN_REDIRECT_URL = '/' 45SOCIAL_AUTH_TWITTER_KEY = '****************' 46SOCIAL_AUTH_TWITTER_SECRET = '***************'
urls
1urlpatterns = [ 2 path('admin/', admin.site.urls), 3 path('', include('map.urls')), 4 path('accounts/', include('accounts.urls')), 5 path('auth/', include('social_django.urls', namespace='social')), #追加 6 path('', RedirectView.as_view(url='')), 7]
templates
1<a href="{% url 'social:begin' 'twitter' %}" class="fab fa-twitter">Twitter</a>
herokulogs
12020-03-30T13:08:29.264942+00:00 app[web.1]: 10.31.231.42 - - [30/Mar/2020:22:08:29 +0900] "GET /auth/complete/twitter/?redirect_state=m1ZJ0Wl83WYaw8dmE9W296VsoguCpLSE&oauth_token=RCkqHAAAAAABCjScAAABcSuOt2I&oauth_verifier=J75JScs77dZiQ10OgT1bXfrD5WIhA31G HTTP/1.1" 500 27 "https://api.twitter.com/oauth/authenticate?oauth_token=RCkqHAAAAAABCjScAAABcSuOt2I&redirect_uri=https%3A%2F%2Fhogehoge.herokuapp.com%2Fauth%2Fcomplete%2Ftwitter%2F%3Fredirect_state%3Dm1ZJ0Wl83WYaw8dmE9W296VsoguCpLSE" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36"
あなたの回答
tips
プレビュー