aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/authentication.md
diff options
context:
space:
mode:
authorFernando Rocha2013-03-27 19:00:36 -0300
committerFernando Rocha2013-03-27 19:00:36 -0300
commitb2cea84fae4f721e8eb6432b3d1bab1309e21a00 (patch)
tree69f163e1ad4d495507ba8bbe826e0e1d8dfaec3c /docs/api-guide/authentication.md
parentf1b8fee4f1e0ea2503d4e0453bdc3049edaa2598 (diff)
downloaddjango-rest-framework-b2cea84fae4f721e8eb6432b3d1bab1309e21a00.tar.bz2
Complete remove of client checks from oauth2
Signed-off-by: Fernando Rocha <fernandogrd@gmail.com>
Diffstat (limited to 'docs/api-guide/authentication.md')
-rw-r--r--docs/api-guide/authentication.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/authentication.md b/docs/api-guide/authentication.md
index 541c6575..f1dd6f5f 100644
--- a/docs/api-guide/authentication.md
+++ b/docs/api-guide/authentication.md
@@ -294,7 +294,7 @@ The only thing needed to make the `OAuth2Authentication` class work is to insert
The command line to test the authentication looks like:
- curl -H "Authorization: Bearer <your-access-token>" http://localhost:8000/api/?client_id=YOUR_CLIENT_ID\&client_secret=YOUR_CLIENT_SECRET
+ curl -H "Authorization: Bearer <your-access-token>" http://localhost:8000/api/
---