OXIESEC PANEL
- Current Dir:
/
/
snap
/
core20
/
2599
/
usr
/
lib
/
python3
/
dist-packages
/
oauthlib
/
oauth2
/
rfc6749
/
clients
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
__init__.py
562 bytes
08/06/2019 02:49:50 PM
rw-r--r--
📁
__pycache__
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
backend_application.py
3.23 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
base.py
21.03 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
legacy_application.py
3.99 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
mobile_application.py
8.62 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
service_application.py
7.68 KB
08/06/2019 02:49:50 PM
rw-r--r--
📄
web_application.py
10.46 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 OAuth 2.0 RFC6749. """ from __future__ import absolute_import, unicode_literals from .base import Client, AUTH_HEADER, URI_QUERY, BODY from .web_application import WebApplicationClient from .mobile_application import MobileApplicationClient from .legacy_application import LegacyApplicationClient from .backend_application import BackendApplicationClient from .service_application import ServiceApplicationClient