A wget-able interface for Firefox Send
This project makes use of the great ffsend-api by Tim Visée
The command takes one argument, which is the base for the host of the URLs it returns.
docker run -itd \
-p 8000:8000 \
--restart=always \
antoniomika/ffswget:latest http://<yourhost>:8000
version: '3.7'
services:
ffswget:
image: antoniomika/ffswget:latest
ports:
- "8000:8000"
command: http://<yourhost>:8000
restart: always
-
Upload files
-
curl --progress-bar --upload-file ~/Downloads/ubuntu-19.04-live-server-amd64.iso http://<yourhost>:8000
-
-
Download files from a URL like https://send.firefox.com/download/file_id/#file_key
-
wget http://<yourhost>:8000/file_id/file_key -O file_name.iso
-
wget http://<yourhost>:8000/download?url=https%3A%2F%2Fsend.firefox.com%2Fdownload%2Ffile_id%2F%23file_key -O file_name.iso
-