Skip to content

Commit e983442

Browse files
committed
minimal on README
1 parent 4794312 commit e983442

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docs/advanced_topics.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Depending on the OAuth2 flow in use and the access token policy, users might be
5757
same authorization multiple times: sometimes this is acceptable or even desiderable but other it isn't.
5858
To control DOT behaviour you can use `approval_prompt` parameter when hitting the authorization endpoint.
5959
Possible values are:
60-
* `force` - users are always prompted for authorization.
60+
* `force` - users are always prompted for authorization.
6161

62-
* `auto` - users are prompted only the first time, subsequent authorizations for the same application
63-
and scopes will be automatically accepted.
62+
* `auto` - users are prompted only the first time, subsequent authorizations for the same application
63+
and scopes will be automatically accepted.

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ If you need support please send a message to the `Django OAuth Toolkit Google Gr
2121
Requirements
2222
------------
2323

24-
* Python 2.7, 3.3
25-
* Django 1.4, 1.5, 1.6
24+
* Python 2.6, 2.7, 3.3, 3.4
25+
* Django 1.4, 1.5, 1.6, 1.7rc1
2626

2727
Index
2828
=====

docs/rest-framework/getting_started.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Django OAuth Toolkit provide a support layer for `Django REST Framework <http://
55
This tutorial it's based on the Django REST Framework example and shows you how to easily integrate with it.
66

77
Step 1: Minimal setup
8-
----------------------------
8+
---------------------
99

1010
Create a virtualenv and install following packages using `pip`...
1111

@@ -36,7 +36,7 @@ To do so add the following lines add the end of your `settings.py` module:
3636
}
3737
3838
Step 2: Create a simple API
39-
--------------------------
39+
---------------------------
4040

4141
Let's create a simple API for accessing users and groups.
4242

@@ -158,7 +158,7 @@ Grab your access_token and start using your new OAuth2 API:
158158
Step 5: Testing Restricted Access
159159
---------------------------------
160160

161-
Let's try to access resources usign a token with a restricted scope adding a `scope` parameter to the token request
161+
Let's try to access resources using a token with a restricted scope adding a `scope` parameter to the token request
162162

163163
::
164164

0 commit comments

Comments
 (0)