You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 29, 2019. It is now read-only.
python-oauth2 is currently not ready for use in production environments.
16
-
While the basic implementations work already pretty well, some types of
17
-
authorization Grants
18
-
`defined in the RFC <http://tools.ietf.org/html/rfc6749#section-1.3>`_ are
19
-
still missing.
15
+
python-oauth2 has reached its beta phase. All main parts of the `OAuth 2.0 RFC <http://tools.ietf.org/html/rfc6749>`_ such as the various types of Grants, Refresh Token and Scopes have been implemented. However, bugs might occur or implementation details might be wrong.
20
16
21
17
Installation
22
18
************
@@ -30,12 +26,11 @@ Usage
30
26
*****
31
27
32
28
Example Authorization server::
33
-
34
29
from wsgiref.simple_server import make_server
35
30
import oauth2
36
31
import oauth2.grant
37
32
import oauth2.error
38
-
import oauth2.store
33
+
import oauth2.store.memory
39
34
import oauth2.tokengenerator
40
35
import oauth2.web
41
36
@@ -61,17 +56,17 @@ Example Authorization server::
61
56
return response
62
57
63
58
# Create an in-memory storage to store your client apps.
0 commit comments