aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2013-04-13 20:08:08 +0100
committerTom Christie2013-04-13 20:08:08 +0100
commit0c1b8b4f767bddb30e0df2f5411cc4798d403de7 (patch)
tree99174bcb2fe2095f595aa6cced9cdc3ce6954fda
parent5a5a602f8ad2e84b36aa88d86334c5afecc40295 (diff)
parent80bec363ef662b47b51ad27897ff0e9cc510c5f8 (diff)
downloaddjango-rest-framework-0c1b8b4f767bddb30e0df2f5411cc4798d403de7.tar.bz2
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
-rwxr-xr-x[-rw-r--r--]docs/api-guide/authentication.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/api-guide/authentication.md b/docs/api-guide/authentication.md
index 0eea31d7..1f08f542 100644..100755
--- a/docs/api-guide/authentication.md
+++ b/docs/api-guide/authentication.md
@@ -107,7 +107,7 @@ Unauthenticated responses that are denied permission will result in an `HTTP 401
WWW-Authenticate: Basic realm="api"
-**Note:** If you use `BasicAuthentication` in production you must ensure that your API is only available over `https` only. You should also ensure that your API clients will always re-request the username and password at login, and will never store those details to persistent storage.
+**Note:** If you use `BasicAuthentication` in production you must ensure that your API is only available over `https`. You should also ensure that your API clients will always re-request the username and password at login, and will never store those details to persistent storage.
## TokenAuthentication
@@ -148,7 +148,7 @@ The `curl` command line tool may be useful for testing token authenticated APIs.
---
-**Note:** If you use `TokenAuthentication` in production you must ensure that your API is only available over `https` only.
+**Note:** If you use `TokenAuthentication` in production you must ensure that your API is only available over `https`.
---
@@ -259,7 +259,7 @@ Finally, sync your database.
---
-**Note:** If you use `OAuth2Authentication` in production you must ensure that your API is only available over `https` only.
+**Note:** If you use `OAuth2Authentication` in production you must ensure that your API is only available over `https`.
---