aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide
diff options
context:
space:
mode:
authorTom Christie2013-03-30 15:40:11 +0000
committerTom Christie2013-03-30 15:40:11 +0000
commit399ac70b831d782b7d774950b59f3b2066ab86f7 (patch)
treee123ad7e60bd45a7e5ba1fe12d596d200cb2392e /docs/api-guide
parentc4eda3a653ada3110dd6c128f176b15071cb8cfe (diff)
parent2e06f5c832479c8802f8bd8654fba5597ee228cc (diff)
downloaddjango-rest-framework-399ac70b831d782b7d774950b59f3b2066ab86f7.tar.bz2
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
Diffstat (limited to 'docs/api-guide')
-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 757b8673..0eea31d7 100644
--- a/docs/api-guide/authentication.md
+++ b/docs/api-guide/authentication.md
@@ -300,7 +300,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/
---