Version: 0.1
Django authentication backend to authenticate against MemberSuite's SOAP API.
-
Django
-
MemberSuite credentials for an API user account
pip install https://github.com/AASHE/django-membersuite-auth/archive/master.zip
Add to your installed apps:
INSTALLED_APPS = [
...
'django_membersuite_auth',
...
]
Update your Authentication Backends:
AUTHENTICATION_BACKENDS = ('django_membersuite_auth.backends.MemberSuiteBackend',)
-
MemberSuite Credentials:
MS_ACCESS_KEY
MS_SECRET_KEY
MS_ASSOCIATION_ID
- `TEST_MS_PORTAL_USER_ID`
- `TEST_MS_PORTAL_USER_PASS`
- `TEST_MS_PORTAL_USER_FIRST_NAME`
- `TEST_MS_PORTAL_USER_LAST_NAME`