OXIESEC PANEL
- Current Dir:
/
/
snap
/
core20
/
2599
/
usr
/
lib
/
python3
/
dist-packages
/
oauthlib
/
oauth2
/
rfc6749
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
524 bytes
08/06/2019 02:49:50 PM
rw-r--r--
📁
__pycache__
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📁
clients
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📁
endpoints
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
errors.py
12.78 KB
08/06/2019 02:49:50 PM
rw-r--r--
📁
grant_types
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
parameters.py
17.74 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
request_validator.py
26.68 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
tokens.py
11 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
utils.py
2.44 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 import functools import logging from .endpoints.base import BaseEndpoint from .endpoints.base import catch_errors_and_unavailability from .errors import TemporarilyUnavailableError, ServerError from .errors import FatalClientError, OAuth2Error log = logging.getLogger(__name__)