10000 Remove redundant text. by vshih · Pull Request #783 · encode/django-rest-framework · GitHub
[go: up one dir, main page]

Skip to content

Remove redundant text. #783

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 11, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/api-guide/authentication.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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`.

---

Expand Down Expand Up @@ -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`.

---

Expand Down
0