Seznam ========= Seznam supports OAuth2 for developers to authenticate users for their apps. The documentation for the API can be found at `Seznam OAuth documentation`_. This backend also provides additional configuration options to support slightly different enterprise versions. 1. Register a new application at `Application management`_, set the ``redirect_uri`` to ``http://example.com/complete/seznam-oauth2/``, replacing ``example.com`` with your domain. 2. Fill ``client_id`` and ``client_secret`` values in the settings:: SOCIAL_AUTH_SEZNAM_OAUTH2_KEY = '' SOCIAL_AUTH_SEZNAM_OAUTH2_SECRET = '' - If you would like to access some additional information from the user, you can set the ``SOCIAL_AUTH_SEZNAM_OAUTH2_SCOPE`` setting to a list of extra scopes that are supported according to the `scope documentation`_. For example, to request access to the user's phone number and avatar: .. code-block:: python SOCIAL_AUTH_SEZNAM_OAUTH2_SCOPE = ['contact-phone', 'avatar'] User ID ------- Seznam recommends the use of ``oauth_user_id`` as the user identifier instead of mutable data such as ``username`` or ``email`` because using mutable identifiers can pose security risks if the user changes them. For that reason ``oauth_user_id`` is used by default, but for compatibility with enterprise backend versions or other use cases, you can override this behavior by configuring the ID key via settings: .. code-block:: python SOCIAL_AUTH_SEZNAM_OAUTH2_ID_KEY = 'id' See the `Configurable User ID Key`_ documentation for more information about this feature. .. _Configurable User ID Key: ../configuration/settings.html#configurable-user-id-key .. _Seznam OAuth documentation: https://vyvojari.seznam.cz/oauth/doc?lang=en .. _Application management: https://vyvojari.seznam.cz/oauth/admin .. _scope documentation: https://vyvojari.seznam.cz/oauth/scopes?lang=en