blob: 50c33f5bdbf3c56f4f1ef69b2de12684a9657cbd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
**********************************************************************
To activate OpenID authentication within your Django installation, you
will need to:
* add 'django_openid_auto' to INSTALLED_APPS,
* add 'django_auth_openid.auth.OpenIDBackend' to
AUTHENTICATION_BACKENDS,
* (optional) enable user creation when a new OpenID is used,
* (optional) have user details updated from SREG or AE extention
data,
* hook up the login URLs to your application's urlconf and
configure the LOGIN_URL and LOGIN_REDIRECT_URL, and
* re-run "python manage.py syncdb" to add the UserOpenID table to
your database.
For detailed instructions see the "README.txt" file that came with
this package; an example Django project with OpenID configured is also
included.
**********************************************************************
|