Skip to content

Commit

Permalink
docs: add a note arguing you should generate tokens (#336)
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Léobal <olivier.leobal@owkin.com>
Co-authored-by: Sarah Diot-Girard <sarah.diot-girard@owkin.com>
  • Loading branch information
oleobal and SdgJlbl committed Aug 17, 2023
1 parent cef269d commit b889908
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion docs/source/how-to/using-substra/api_tokens_generation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,24 @@ How-to use new API tokens for login

This short guide explains how to manage API tokens in the web application, and use them in the Substra SDK.

.. note::
.. admonition:: Why generate API tokens?

The Substra SDK provides a way to log in using username and password (see `substra.Client <references/sdk.html#client>`_).

It is safe, but should be used with caution:

* It doesn't allow for a precise lifetime or separating concerns by creating one token per purpose.

* It may surprise or limit you through its underlying automated session management.

* It can encourage using cleartext passwords, which can end up shared in version control.

For these reasons, it is possible for Substra node administrators (via `chart options <https://github.com/Substra/substra-backend/blob/main/charts/substra-backend/README.md#server-settings>`_) to disable "implicit login" and force users to generate tokens in the web app.

Whatever the situation, you should use a mechanism to ensure credentials are kept out of view, for instance by reading secret files or environment variables at runtime (see :ref:`client configuration howto`).


.. warning::
API tokens are node-specific: if your script connects to multiple nodes, generate a token for each of them.

Generating new API tokens
Expand Down

0 comments on commit b889908

Please sign in to comment.