OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
888
/
usr
/
lib
/
python3
/
dist-packages
/
oauthlib
/
oauth2
/
rfc6749
/
endpoints
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📄
__init__.py
553 bytes
06/01/2021 12:20:37 PM
rw-r--r--
📁
__pycache__
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📄
authorization.py
4.48 KB
06/01/2021 12:20:37 PM
rw-r--r--
📄
base.py
4.03 KB
06/01/2021 12:20:37 PM
rw-r--r--
📄
introspect.py
4.83 KB
09/06/2022 08:10:05 PM
rw-r--r--
📄
metadata.py
10.28 KB
09/06/2022 08:10:05 PM
rw-r--r--
📄
pre_configured.py
11.67 KB
06/01/2021 12:20:37 PM
rw-r--r--
📄
resource.py
3.17 KB
06/01/2021 12:20:37 PM
rw-r--r--
📄
revocation.py
5.09 KB
09/06/2022 08:10:05 PM
rw-r--r--
📄
token.py
4.49 KB
06/01/2021 12:20:37 PM
rw-r--r--
Editing: __init__.py
Close
""" oauthlib.oauth2.rfc6749 ~~~~~~~~~~~~~~~~~~~~~~~ This module is an implementation of various logic needed for consuming and providing OAuth 2.0 RFC6749. """ from .authorization import AuthorizationEndpoint from .introspect import IntrospectEndpoint from .metadata import MetadataEndpoint from .pre_configured import ( BackendApplicationServer, LegacyApplicationServer, MobileApplicationServer, Server, WebApplicationServer, ) from .resource import ResourceEndpoint from .revocation import RevocationEndpoint from .token import TokenEndpoint