Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
0a2d6b3
feat(mfa): Implement MfaClient for Multi-Factor Authentication operat…
subhankarmaiti Feb 16, 2026
eda205d
Revert "feat(mfa): Implement MfaClient for Multi-Factor Authenticatio…
subhankarmaiti Feb 16, 2026
6027a25
Merge branch 'main' of https://github.com/auth0/auth0-server-python i…
subhankarmaiti Feb 16, 2026
f99df07
feat(mfa): Implement Multi-Factor Authentication (MFA) client and int…
subhankarmaiti Feb 16, 2026
e9bec1c
fix: reorder import
subhankarmaiti Feb 16, 2026
3fcdbf9
fix: reorder imports
subhankarmaiti Feb 16, 2026
c8cf2d7
added test cases to cover enroll, challenge and verify steps
subhankarmaiti Feb 17, 2026
1b3d60a
refactor: remove delete_authenticator method and its tests
subhankarmaiti Feb 19, 2026
69b96f8
feat(mfa): Add comprehensive MFA documentation and usage examples
subhankarmaiti Feb 19, 2026
f2746e1
feat(mfa): Implement session persistence for MFA tokens in the client
subhankarmaiti Feb 19, 2026
038c934
feat(mfa): Update MFA API to use 'factor_type' instead of 'authentica…
subhankarmaiti Feb 19, 2026
31a75d9
refactor: Remove unused MfaDeleteAuthenticatorError import from mfa_c…
subhankarmaiti Feb 19, 2026
d69d6c0
feat(mfa): Update MFA API to support 'auth0' factor type and refactor…
subhankarmaiti Mar 16, 2026
6327758
feat(mfa): Enhance MFA documentation and add support for Push Notific…
subhankarmaiti Mar 16, 2026
49bda6d
Merge branch 'main' into feat/mfa-api
kishore7snehil Apr 16, 2026
1ea1169
fix(mfa): Add MCD support and consistent store_options to MfaClient
kishore7snehil Apr 20, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
792 changes: 792 additions & 0 deletions examples/MFA.md

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/auth0_server_python/auth_server/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from .mfa_client import MfaClient
from .my_account_client import MyAccountClient
from .server_client import ServerClient

__all__ = ["ServerClient", "MyAccountClient"]
__all__ = ["ServerClient", "MyAccountClient", "MfaClient"]
Loading
Loading