I am trying to install Django facebook graph in my project ,
I installed ‘facebook’ in Insatlled_app and added
['facebook.middleware.SignedRequestMiddleware',
'facebook.middleware.AppRequestMiddleware',
]
This 2 in MIDDLEWARE_CLASSES
Then added
url(r'^accounts/',include('facebook.backends.registration.urls')),
url(r'^facebook/', include('facebook.urls')),
as given in the documentation
when I compile it showing ModuleNotFoundError: No module named 'facebook.urls'
Have you added facebook to installed apps ? if you haven't done so and you are trying to reference it's urls module, you'll most likely get this error