10000 Add new digest auth params for downloader integration by mossymaker · Pull Request #39642 · home-assistant/home-assistant.io · GitHub
[go: up one dir, main page]

Skip to content

Add new digest auth params for downloader integration #39642

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

Open
wants to merge 2 commits into
base: next
Choose a base branch
from
Open
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
11 changes: 7 additions & 4 deletions source/_integrations/downloader.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,13 @@ Go to the "Developer Tools", then to "Actions", and choose `downloader.download_
This will download the file from the given URL.

| Data attribute | Optional | Description |
| ---------------------- | -------- | ---------------------------------------------- |
| `url` | no | The URL of the file to download. |
| `subdir` | yes | Download into subdirectory of **download_dir** |
| `filename` | yes | Determine the filename. |
| ---------------------- | -------- | ------------------------------------------------- |
| `url` | no | The URL of the file to download. |
| `auth_type` | yes | Authentication type to use (`basic` or `digest`). |
| `auth_username` | yes | Username to use with authentication. |
| `auth_password` | yes | Password to use with authentication. |
| `subdir` | yes | Download into subdirectory of **download_dir** |
| `filename` | yes | Determine the filename. |
| `overwrite` | yes | Whether to overwrite the file or not, defaults to `false`. |

### Download status events
Expand Down
0