obi-auth is a library for retrieving Keycloak access tokens interactively. It helps developers and testers quickly authenticate against Keycloak without writing scripts or configuring complex clients.
Caution
obi-auth is designed to be used interactively and should not be used within a service or application.
pip install obi-authTo use the obi-auth command-line interface:
pip install obi-auth[cli]This installs click which is required by the CLI.
For enhanced Jupyter notebook support with Rich display integration:
pip install obi-auth[notebook]This installs rich which provides better rendering in Jupyter notebooks.
from obi_auth import get_token
access_token = get_token(environment="staging")
access_token = get_token(environment="staging", token_provider="auth_manager")
# Mint from an existing auth-manager persistent id (e.g. obi-one launch scripts):
access_token = get_token(
environment="staging",
auth_mode="persistent_token",
persistent_token_id="<uuid>",
)After installing with the cli extra, the obi-auth command is available. Run obi-auth --help for the full list of commands and options.
Authenticate and print the access token to stdout. Output is a single token string, suitable for piping into other commands.
obi-auth get-token
obi-auth get-token -e production -m daf
obi-auth get-token -p auth_manager
obi-auth get-token -m persistent_token --persistent-token-id <uuid>
obi-auth get-token --force-refresh| Option | Description |
|---|---|
-e, --environment |
Target environment: staging (default) or production |
-m, --auth-mode |
Authentication method: pkce (default), daf, or persistent_token |
-p, --token-provider |
Token issuer: keycloak (default) or auth_manager |
--persistent-token-id |
Persistent token id (required when --auth-mode persistent_token) |
--force-refresh |
Clear the cached token and authenticate again |
Decode a JWT and print the payload as indented JSON. Pass the token as an argument or via stdin.
obi-auth decode-token eyJhbGciOi...
obi-auth get-token | obi-auth decode-token
obi-auth get-token | obi-auth decode-token | jq -r '.sub'Authenticate, fetch user info from Keycloak, and print the result as indented JSON.
obi-auth get-user-info
obi-auth get-user-info -e production -m daf
obi-auth get-user-info -p auth_manager
obi-auth get-user-info --force-refresh
obi-auth get-user-info | jq -r '.sub'| Option | Description |
|---|---|
-e, --environment |
Target environment: staging (default) or production |
-m, --auth-mode |
Authentication method: pkce (default), daf, or persistent_token |
-p, --token-provider |
Token issuer: keycloak (default) or auth_manager |
--persistent-token-id |
Persistent token id (required when --auth-mode persistent_token) |
--force-refresh |
Clear the cached token and authenticate again |
| Option | Description |
|---|---|
--log-level |
Logging level: DEBUG, INFO, WARNING (default), ERROR, CRITICAL |
Copyright (c) 2025 Open Brain Institute
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.