Hi
I’m trying to download a pdf file from a web and I can’t.
My configuration.yaml file:
downloader:
download_dir: /tmp
My automation is:
action:
- service: downloader.download_file
data:
url: >-
https://www.analog.com/media/en/technical-documentation/data-sheets/2909fb.pdf
subdir: /tmp
filename: file.pdf
mode: single
I check logs and nothing appears
I add 2 automations to catch downloader events, and the download is always ok but I can’t see the file.
I try to find the file in a terminal, but the answer is nothing:
/ find -iname '*.pdf'
I try using the developer tools, and I have the same “error”, all It’s ok, and the file is missing
If i download the file in the terminal, everything is ok
I try deleting subdir and filename lines, and I have the same result
What am I doing wrong?