OXIESEC PANEL
- Current Dir:
/
/
snap
/
core20
/
2599
/
usr
/
lib
/
python3
/
dist-packages
/
oauthlib
/
oauth2
/
rfc6749
/
endpoints
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
__init__.py
730 bytes
08/06/2019 02:49:50 PM
rw-r--r--
📁
__pycache__
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
authorization.py
4.56 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
base.py
4.21 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
introspect.py
4.97 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
metadata.py
10.34 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
pre_configured.py
11.64 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
resource.py
3.25 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
revocation.py
5.19 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
token.py
4.63 KB
08/06/2019 02:49:50 PM
rw-r--r--
Editing: __init__.py
Close
# -*- coding: utf-8 -*- """ oauthlib.oauth2.rfc6749 ~~~~~~~~~~~~~~~~~~~~~~~ This module is an implementation of various logic needed for consuming and providing OAuth 2.0 RFC6749. """ from __future__ import absolute_import, unicode_literals from .authorization import AuthorizationEndpoint from .introspect import IntrospectEndpoint from .metadata import MetadataEndpoint from .token import TokenEndpoint from .resource import ResourceEndpoint from .revocation import RevocationEndpoint from .pre_configured import Server from .pre_configured import WebApplicationServer from .pre_configured import MobileApplicationServer from .pre_configured import LegacyApplicationServer from .pre_configured import BackendApplicationServer