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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
|
Configuration
=============
Application setup
-----------------
Once the application is installed (check Installation_) define the following
settings to enable the application behavior. Also check the sections dedicated
to each framework for detailed instructions.
Settings name
-------------
Almost all settings are prefixed with ``SOCIAL_AUTH_``, there are some
exceptions for Django framework like ``AUTHENTICATION_BACKENDS``.
All settings can be defined per-backend by adding the backend name to the
setting name like ``SOCIAL_AUTH_TWITTER_LOGIN_URL``. Settings discovery is done
by reducing the name starting with backend setting, then app setting and
finally global setting, for example::
SOCIAL_AUTH_TWITTER_LOGIN_URL
SOCIAL_AUTH_LOGIN_URL
LOGIN_URL
The backend name is generated from the ``name`` attribute from the backend
class by uppercasing it and replacing ``-`` with ``_``.
Keys and secrets
----------------
- Setup needed OAuth keys (see OAuth_ section for details)::
SOCIAL_AUTH_TWITTER_KEY = 'foobar'
SOCIAL_AUTH_TWITTER_SECRET = 'bazqux'
OpenId backends don't require keys usually, but some need some API Key to
call any API on the provider. Check Backends_ sections for details.
Authentication backends
-----------------------
Register the backends you plan to use, on Django framework use the usual
``AUTHENTICATION_BACKENDS`` settings, for others, define
``SOCIAL_AUTH_AUTHENTICATION_BACKENDS``::
SOCIAL_AUTH_AUTHENTICATION_BACKENDS = (
'social.backends.open_id.OpenIdAuth',
'social.backends.google.GoogleOpenId',
'social.backends.google.GoogleOAuth2',
'social.backends.google.GoogleOAuth',
'social.backends.twitter.TwitterOAuth',
'social.backends.yahoo.YahooOpenId',
...
)
URLs options
------------
These URLs are used on different steps of the auth process, some for successful
results and others for error situations.
``SOCIAL_AUTH_LOGIN_REDIRECT_URL = '/logged-in/'``
Used to redirect the user once the auth process ended successfully. The
value of ``?next=/foo`` is used if it was present
``SOCIAL_AUTH_LOGIN_ERROR_URL = '/login-error/'``
URL where the user will be redirected in case of an error
``SOCIAL_AUTH_LOGIN_URL = '/login-url/'``
Is used as a fallback for ``LOGIN_ERROR_URL``
``SOCIAL_AUTH_NEW_USER_REDIRECT_URL = '/new-users-redirect-url/'``
Used to redirect new registered users, will be used in place of
``SOCIAL_AUTH_LOGIN_REDIRECT_URL`` if defined.
``SOCIAL_AUTH_NEW_ASSOCIATION_REDIRECT_URL = '/new-association-redirect-url/'``
Like ``SOCIAL_AUTH_NEW_USER_REDIRECT_URL`` but for new associated accounts
(user is already logged in). Used in place of ``SOCIAL_AUTH_LOGIN_REDIRECT_URL``
``SOCIAL_AUTH_DISCONNECT_REDIRECT_URL = '/account-disconnected-redirect-url/'``
The user will be redirected to this URL when a social account is
disconnected
``SOCIAL_AUTH_INACTIVE_USER_URL = '/inactive-user/'``
Inactive users can be redirected to this URL when trying to authenticate.
Successful URLs will default to ``SOCIAL_AUTH_LOGIN_URL`` while error URLs will
fallback to ``SOCIAL_AUTH_LOGIN_ERROR_URL``.
User model
----------
``UserSocialAuth`` instances keep a reference to the ``User`` model of your
project, since this is not known, the ``User`` model must be configured by
a setting::
SOCIAL_AUTH_USER_MODEL = 'foo.bar.User'
``User`` model must have a ``username`` and ``email`` field, these are
required.
Also an ``is_authenticated`` and ``is_active`` boolean flags are recommended,
these can be methods if necessary (must return ``True`` or ``False``). If the
model lacks them a ``True`` value is assumed.
Tweaking some fields length
---------------------------
Some databases impose limitations to indexes columns (like MySQL InnoDB), these
limitations won't play nice on some ``UserSocialAuth`` fields. To avoid such
error define some of the following settings.
``SOCIAL_AUTH_UID_LENGTH = <int>``
Used to define the max length of the field `uid`. A value of 223 should work
when using MySQL InnoDB which impose a 767 bytes limit (assuming UTF-8
encoding).
``SOCIAL_AUTH_NONCE_SERVER_URL_LENGTH = <int>``
``Nonce`` model has a unique constraint over ``('server_url', 'timestamp',
'salt')``, salt has a max length of 40, so ``server_url`` length must be
tweaked using this setting.
``SOCIAL_AUTH_ASSOCIATION_SERVER_URL_LENGTH = <int>`` or ``SOCIAL_AUTH_ASSOCIATION_HANDLE_LENGTH = <int>``
``Association`` model has a unique constraint over ``('server_url',
'handle')``, both fields lengths can be tweaked by these settings.
Username generation
-------------------
Some providers return an username, others just an Id or email or first and last
names. The application tries to build a meaningful username when possible but
defaults to generating one if needed.
An UUID is appended to usernames in case of collisions. Here are some settings
to control usernames generation.
``SOCIAL_AUTH_UUID_LENGTH = 16``
This controls the length of the UUID appended to usernames.
``SOCIAL_AUTH_USERNAME_IS_FULL_EMAIL = True``
If you want to use the full email address as the ``username``, define this
setting.
``SOCIAL_AUTH_SLUGIFY_USERNAMES = False``
For those that prefer slugged usernames, the ``get_username`` pipeline can
apply a slug transformation (code borrowed from Django project) by defining
this setting to ``True``. The feature is disabled by default to to not
force this option to all projects.
``SOCIAL_AUTH_CLEAN_USERNAMES = True``
By default the regex ``r'[^\w.@+-_]+'`` is applied over usernames to clean
them from usual undesired characters like spaces. Set this setting to
``False`` to disable this behavior.
Extra arguments on auth processes
---------------------------------
Some providers accept particular GET parameters that produce different results
during the auth process, usually used to show different dialog types (mobile
version, etc).
You can send extra parameters on auth process by defining settings per backend,
example to request Facebook to show Mobile authorization page, define::
FACEBOOK_AUTH_EXTRA_ARGUMENTS = {'display': 'touch'}
For other providers, just define settings in the form::
<uppercase backend name>_AUTH_EXTRA_ARGUMENTS = {...}
Also, you can send extra parameters on request token process by defining
settings in the same way explained above but with this other suffix::
<uppercase backend name>_REQUEST_TOKEN_EXTRA_ARGUMENTS = {...}
Basic information is requested to the different providers in order to create
a coherent user instance (with first and last name, email and full name), this
could be too intrusive for some sites that want to ask users the minimum data
possible. It's possible to override the default values requested by defining
any of the following settings, for Open Id providers::
SOCIAL_AUTH_<BACKEND_NAME>_IGNORE_DEFAULT_AX_ATTRS = True
SOCIAL_AUTH_<BACKEND_NAME>_AX_SCHEMA_ATTRS = [
(schema, alias)
]
For OAuth backends::
SOCIAL_AUTH_<BACKEND_NAME>_IGNORE_DEFAULT_SCOPE = True
SOCIAL_AUTH_<BACKEND_NAME>_SCOPE = [
...
]
Processing redirects and urlopen
--------------------------------
The application issues several redirects and API calls, this following settings
allow some tweaks to the behavior of these.
``SOCIAL_AUTH_SANITIZE_REDIRECTS = False``
The auth process finishes with a redirect, by default it's done to the
value of ``SOCIAL_AUTH_LOGIN_REDIRECT_URL`` but can be overridden with
``next`` GET argument. If this settings is ``True``, this application will
very the domain of the final URL and only redirect to it if it's on the
same domain.
``SOCIAL_AUTH_REDIRECT_IS_HTTPS = False``
On projects behind a reverse proxy that uses HTTPS, the redirect URIs
can became with the wrong schema (``http://`` instead of ``https://``) when
the request lacks some headers, and might cause errors with the auth
process, to force HTTPS in the final URIs set this setting to ``True``
``SOCIAL_AUTH_URLOPEN_TIMEOUT = 30``
Any ``urllib2.urlopen`` call will be performed with the default timeout
value, to change it without affecting the global socket timeout define this
setting (the value specifies timeout seconds).
``urllib2.urlopen`` uses ``socket.getdefaulttimeout()`` value by default, so
setting ``socket.setdefaulttimeout(...)`` will affect ``urlopen`` when this
setting is not defined, otherwise this setting takes precedence. Also this
might affect other places in Django.
``timeout`` argument was introduced in python 2.6 according to `urllib2
documentation`_
Whitelists
----------
Registration can be limited to a set of users identified by their email
address or domain name. To white-list just set any of these settings:
``SOCIAL_AUTH_<BACKEND_NAME>_WHITELISTED_DOMAINS = ['foo.com', 'bar.com']``
Supply a list of domain names to be white-listed. Any user with an email
address on any of the allowed domains will login successfully, otherwise
``AuthForbidden`` is raised.
``SOCIAL_AUTH_<BACKEND_NAME>_WHITELISTED_EMAILS = ['me@foo.com', 'you@bar.com']``
Supply a list of email addresses to be white-listed. Any user with an email
address in this list will login successfully, otherwise ``AuthForbidden``
is raised.
Miscellaneous settings
----------------------
``SOCIAL_AUTH_PROTECTED_USER_FIELDS = ['email',]``
The `user_details` pipeline processor will set certain fields on user
objects, such as ``email``. Set this to a list of fields you only want to
set for newly created users and avoid updating on further logins.
``SOCIAL_AUTH_SESSION_EXPIRATION = False``
By default, user session expiration time will be set by your web
framework (in Django, for example, it is set with
SOCIAL_AUTH_SESSION_EXPIRATION). Some providers return the time that the
access token will live, which is stored in ``UserSocialAuth.extra_data``
under the key ``expires``. Changing this setting to True will override your
web framework's session length setting and set user session lengths to
match the ``expires`` value from the auth provider.
``SOCIAL_AUTH_OPENID_PAPE_MAX_AUTH_AGE = <int value>``
Enable `OpenID PAPE`_ extension support by defining this setting.
``SOCIAL_AUTH_FIELDS_STORED_IN_SESSION = ['foo',]``
If you want to store extra parameters from POST or GET in session, like it
was made for ``next`` parameter, define this setting with the parameter
names.
In this case ``foo`` field's value will be stored when user follows this
link ``<a href="{% url socialauth_begin 'github' %}?foo=bar">...</a>``.
``SOCIAL_AUTH_PASSWORDLESS = False``
When this setting is ``True`` and ``social.pipeline.mail.send_validation``
is enabled, it allows the implementation of a `passwordless authentication
mechanism`_. Example of this implementation can be found at
psa-passwordless_.
Account disconnection
---------------------
Disconnect is an side-effect operation and should be done by POST method only,
some CSRF protection is encouraged (and enforced on Django app). Ensure that
any call to `/disconnect/<backend>/` or `/disconnect/<backend>/<id>/` is done
using POST.
.. _urllib2 documentation: http://docs.python.org/library/urllib2.html#urllib2.urlopen
.. _OpenID PAPE: http://openid.net/specs/openid-provider-authentication-policy-extension-1_0.html
.. _Installation: ../installing.html
.. _Backends: ../backends/index.html
.. _OAuth: http://oauth.net/
.. _passwordless authentication mechanism: https://medium.com/@ninjudd/passwords-are-obsolete-9ed56d483eb
.. _psa-passwordless: https://github.com/omab/psa-passwordless
|