OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
oauthlib
/
oauth2
/
rfc6749
/
clients
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/21/2019 03:49:53 PM
rwxr-xr-x
📄
__init__.py
562 bytes
10/19/2017 04:13:25 PM
rw-r--r--
📁
__pycache__
-
10/21/2019 03:49:53 PM
rwxr-xr-x
📄
backend_application.py
2.42 KB
10/19/2017 04:13:25 PM
rw-r--r--
📄
base.py
19.88 KB
10/19/2017 04:13:25 PM
rw-r--r--
📄
legacy_application.py
3.24 KB
10/19/2017 04:13:25 PM
rw-r--r--
📄
mobile_application.py
8.56 KB
10/19/2017 04:13:25 PM
rw-r--r--
📄
service_application.py
6.82 KB
10/19/2017 04:13:25 PM
rw-r--r--
📄
web_application.py
8.99 KB
10/19/2017 04:13:25 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