Single Sign-On functionallity between Django and Freshdesk.
The Freshdesk documentation for Single Sign-On is located at Freshdesk documentation
Getting the code for the latest stable release using pip:
$ pip install django-freshdesk
You can also download the source and run:
$ python setup.py install
Make sure that .django.contrib.auth' is installed and then add register 'freshdesk' in the 'INSTALLED_APPS' section of your project's settings
INSTALLED_APPS = ( ... 'django.contrib.auth', 'freshdesk', )
You must specify two settings variables in your settings module.
- The URL of your support page, will either a subdomain in freshdesk.com or your own domain (using a CNAME record)
FRESHDESK_URL = 'http://yourcompany.freshdesk.com/'
- The shared secret you get from Freshdesk when setting up Simple SSO
FRESHDESK_SECRET_KEY = '098f6bcd4621d373cade4e832627b4f6'
Add the application urls to your urlconf
urlpatterns = [ ... url(r'^login/sso/', include('freshdesk.urls')), ]
- Python 2.7, 3.2, 3.3 or 3.4
- Django >= 1.8
If you have found a bug or or you have a ny request, please use the issue tracker on GitHub.
https://github.com/ThatGreenSpace/django-freshdesk/issues
You can use this software under BSD License.