I am using the socialdjango 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\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?
I am using the socialdjango 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\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?