Skip to content

Instantly share code, notes, and snippets.

@aashutoshPanda
Created April 23, 2021 16:05
from django.contrib import admin
from django.urls import path,include
urlpatterns = [
path('admin/', admin.site.urls),
path('auth/',include('drf_social_oauth2.urls',namespace='drf')) # add this
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment