Documentation for digest auth (#781)

This commit is contained in:
Matthias Grawinkel 2016-08-17 19:09:18 +02:00 committed by Fabian Affolter
parent c674e44b99
commit 157bd45d40
2 changed files with 5 additions and 1 deletions

View File

@ -27,6 +27,7 @@ camera:
name: my sample camera
username: USERNAME
password: PASSWORD
authentication: basic
```
Configuration variables:
@ -35,3 +36,4 @@ Configuration variables:
- **name** (*Optional*): This parameter allows you to override the name of your camera.
- **username** (*Optional*): The username for accessing your camera.
- **password** (*Optional*): The password for accessing your camera.
- **authentication** (*Optional*): `basic` (default) or `digest` auth for requests.

View File

@ -27,6 +27,7 @@ camera:
name: my sample camera
username: USERNAME
password: PASSWORD
authentication: basic
```
Configuration variables:
@ -35,7 +36,8 @@ Configuration variables:
- **name** (*Optional*): This parameter allows you to override the name of your camera.
- **username** (*Optional*): The username for accessing your camera.
- **password** (*Optional*): The password for accessing your camera.
- **authentication** (*Optional*): `basic` (default) or `digest` auth for requests.
-
<p class='note'>
There is a <a href="https://github.com/shazow/urllib3/issues/800" target="_blank">known issue in urllib3</a> that you will get error messages in your logs like <code>[StartBoundaryNotFoundDefect(), MultipartInvariantViolationDefect()], unparsed data: ''</code> but the component still works fine. You can ignore the messages.
</p>