blob: ac9a50d937eac78e36dbe4b1bffac441f1fd5714 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Ganyupload - File Upload Service
Upload files using curl with a PUT request:
curl -X PUT --data-binary @myfile.txt https://upld.williamsfam.us.com/myfile.txt
The server will respond with "ok" on success.
You can use any path you want:
curl -X PUT --data-binary @document.pdf https://upld.williamsfam.us.com/docs/document.pdf
Nested directories will be created automatically.
|