diff options
author | ibl <ibl@localhost> | 2014-10-16 10:03:38 +0100 |
---|---|---|
committer | ibl <ibl@localhost> | 2014-10-16 10:03:38 +0100 |
commit | 8624bfc87f0fa24548d01ee33de77fedd802d146 (patch) | |
tree | 95094a0605e3a3336479a5c72bdb94af5045dbdd /oauthlib/oauth2/__init__.py | |
parent | deed5616ae93dcd8c0d57ce2ea1c5fca252a7fde (diff) | |
download | oauthlib-8624bfc87f0fa24548d01ee33de77fedd802d146.tar.gz |
First step towards supporting JWT bearer grants.
Initial support is only for clients and need more unit tests
as well as real service tests.
Server support to come later.
Diffstat (limited to 'oauthlib/oauth2/__init__.py')
-rw-r--r-- | oauthlib/oauth2/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/oauthlib/oauth2/__init__.py b/oauthlib/oauth2/__init__.py index 79be716..0238f1d 100644 --- a/oauthlib/oauth2/__init__.py +++ b/oauthlib/oauth2/__init__.py @@ -13,6 +13,7 @@ from .rfc6749.clients import WebApplicationClient from .rfc6749.clients import MobileApplicationClient from .rfc6749.clients import LegacyApplicationClient from .rfc6749.clients import BackendApplicationClient +from .rfc6749.clients import ServiceApplicationClient from .rfc6749.endpoints import AuthorizationEndpoint from .rfc6749.endpoints import TokenEndpoint from .rfc6749.endpoints import ResourceEndpoint |