diff --git a/social/apps/pyramid_app/views.py b/social/apps/pyramid_app/views.py index 38ee4fa33..7587ff929 100644 --- a/social/apps/pyramid_app/views.py +++ b/social/apps/pyramid_app/views.py @@ -5,7 +5,7 @@ from social.apps.pyramid_app.utils import psa, login_required -@view_config(route_name='social.auth', request_method='GET') +@view_config(route_name='social.auth', request_method=('GET', 'POST')) @psa('social.complete') def auth(request): return do_auth(request.backend, redirect_name='next')