You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the social_django app to use the social authentication for google & facebook.
When I log-in through facebook I want the page to redirect to my home.html page of website.
But instead its redirecting to -> http://localhost:8000/oauth/complete/facebook/home.html#_=_
Using the URLconf defined in naka.urls, Django tried these URL patterns, in this order:
^naka/
^naka/
^naka/
^oauth/ ^login/(?P[^/]+)/$ [name='begin']
^oauth/ ^complete/(?P[^/]+)/$ [name='complete']
^oauth/ ^disconnect/(?P[^/]+)/$ [name='disconnect']
^oauth/ ^disconnect/(?P[^/]+)/(?P<association_id>\d+)/$ [name='disconnect_individual']
^admin/
The current path, oauth/complete/facebook/home.html, didn't match any of these
How should I go about the proceedings?
The text was updated successfully, but these errors were encountered:
I am using the social_django app to use the social authentication for google & facebook.
When I log-in through facebook I want the page to redirect to my home.html page of website.
But instead its redirecting to -> http://localhost:8000/oauth/complete/facebook/home.html#_=_
Using the URLconf defined in naka.urls, Django tried these URL patterns, in this order:
^naka/
^naka/
^naka/
^oauth/ ^login/(?P[^/]+)/$ [name='begin']
^oauth/ ^complete/(?P[^/]+)/$ [name='complete']
^oauth/ ^disconnect/(?P[^/]+)/$ [name='disconnect']
^oauth/ ^disconnect/(?P[^/]+)/(?P<association_id>\d+)/$ [name='disconnect_individual']
^admin/
The current path, oauth/complete/facebook/home.html, didn't match any of these
How should I go about the proceedings?
The text was updated successfully, but these errors were encountered: