• Path prefix: All transfers must use /p/
(e.g., /p/mypath
)
• One-time only: Each message can be received only once
curl -T myfile.txt https://example.com/p/mypath
echo "Hello!" | curl -T - https://example.com/p/mypath
cat file.txt | gzip | curl -T - https://example.com/p/mypath
curl https://example.com/p/mypath > received.txt
curl https://example.com/p/mypath
curl https://example.com/p/mypath | gunzip > file.txt