A django app for managing(approve/spam/delete/update) Disqus posts in django admin.
-
Add
disqus-backstore
inINSTALLED_APPS
in your django settings module. -
Add the following attribute in your shell environment variable or django setting module:
-
DISQUS_PUBLIC_KEY
:str
, the api public key in disqus. -
DISQUS_SECRET_KEY
:str
, the api secret key in disqus. -
DISQUS_FORUM_SHORTNAME
:str
, the short name of forum which you want to manage. -
DISUQS_ACCESS_TOKEN
:str
, the access token for your own application.
-
You can apply them in Disqus API site; See the detail in disqus api .
python manage.py runserver
and login to the django admin page. You should see the Disqus Thread/Post object list now!
MIT