django-ezengage ist ein Django-Applikation, die mit dem ezengage Service funktioniert.
Installation
1. Laden Sie neueste Version von https://github.com/ezengage/django-ezengage/downloads/
2. Entpacken Sie das Archiv
3. Lauf
& Nbsp; & nbsp; python setup.py install
Wir werden laster laden Sie die Datei in PyPI, so dass Ihr mit easy_install installieren.
Konfiguration
fügen `zu INSTALLED_APPS eze_auth`
& Nbsp; INSTALLED_APPS = (
& Nbsp; & nbsp; & nbsp; & nbsp; & nbsp; # .....
& Nbsp; & nbsp; & nbsp; & nbsp; & nbsp; 'Eze_auth',
& Nbsp; & nbsp; & nbsp; & nbsp; & nbsp; # ....
& Nbsp; }
fügen `eze_auth.auth_backends.EzEngageBackend` & nbsp; um AUTHENTICATION_BACKENDS
& Nbsp; AUTHENTICATION_BACKENDS = (
& Nbsp; & nbsp; & nbsp; & nbsp; & nbsp; 'Django.contrib.auth.backends.ModelBackend',
& Nbsp; & nbsp; & nbsp; & nbsp; & nbsp; 'Eze_auth.auth_backends.EzEngageBackend',
& Nbsp; )
fügen `eze_auth_urls` zu url conf
& Nbsp; urlpatterns + = Muster ('',
& Nbsp; & nbsp; & nbsp; & nbsp; & nbsp; (R '^ eze /', include ('eze_auth.urls')),
& Nbsp; )
Sync-Datenbank
& Nbsp; ./manage.py syncdb eze_auth
wenn Sie mit Süd, führen
& Nbsp; ./manage.py eze_auth migrieren
Embed Login Widget in Vorlage
& Nbsp; & nbsp; {% Last eze_tags%}
& Nbsp; & nbsp; {% Eze_login_widget '/ nach / login / done / "%}
Status-Update
& Nbsp; & nbsp; von eze_auth.helper import get_api_client
& Nbsp; & nbsp; von eze_auth.models importieren EzeUserProfile
& Nbsp; & nbsp; Identität = EzeUserProfile.objects.get (user = request.user)
& Nbsp; & nbsp; message = 'Update-Status zu ...'
& Nbsp; & nbsp; eze_api_client = get_api_client ()
& Nbsp; & nbsp; eze_api_client.update_status (identity.identity, message)
Anforderungen :
- Python
- Django
Kommentare nicht gefunden