Advertisement
Guest User

Untitled

a guest
Jul 9th, 2014
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. Environment:
  2.  
  3.  
  4. Request Method: GET
  5. Request URL: http://localhost:8000/accounts/facebook/login/
  6.  
  7. Django Version: 1.6.5
  8. Python Version: 2.7.3
  9. Installed Applications:
  10. ('django.contrib.admin',
  11. 'django.contrib.auth',
  12. 'django.contrib.contenttypes',
  13. 'django.contrib.sessions',
  14. 'django.contrib.messages',
  15. 'django.contrib.staticfiles',
  16. 'django.contrib.sites',
  17. 'website',
  18. 'allauth',
  19. 'allauth.account',
  20. 'allauth.socialaccount',
  21. 'allauth.socialaccount.providers.facebook')
  22. Installed Middleware:
  23. ('django.contrib.sessions.middleware.SessionMiddleware',
  24. 'django.middleware.common.CommonMiddleware',
  25. 'django.middleware.csrf.CsrfViewMiddleware',
  26. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  27. 'django.contrib.messages.middleware.MessageMiddleware',
  28. 'django.middleware.clickjacking.XFrameOptionsMiddleware')
  29.  
  30.  
  31. Traceback:
  32. File "C:\Python27\lib\site-packages\django\core\handlers\base.py" in get_response
  33. 112. response = wrapped_callback(request, *callback_args, **callback_kwargs)
  34. File "C:\Python27\lib\site-packages\allauth\socialaccount\providers\oauth2\views.py" in view
  35. 51. return self.dispatch(request, *args, **kwargs)
  36. File "C:\Python27\lib\site-packages\allauth\socialaccount\providers\oauth2\views.py" in dispatch
  37. 72. client = self.get_client(request, app)
  38. File "C:\Python27\lib\site-packages\allauth\socialaccount\providers\oauth2\views.py" in get_client
  39. 55. callback_url = reverse(self.adapter.provider_id + "_callback")
  40. File "C:\Python27\lib\site-packages\django\core\urlresolvers.py" in reverse
  41. 532. return iri_to_uri(resolver._reverse_with_prefix(view, prefix, *args, **kwargs))
  42. File "C:\Python27\lib\site-packages\django\core\urlresolvers.py" in _reverse_with_prefix
  43. 452. (lookup_view_s, args, kwargs, len(patterns), patterns))
  44.  
  45. Exception Type: NoReverseMatch at /accounts/facebook/login/
  46. Exception Value: Reverse for 'facebook_callback' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement