Curl

如何使用 curl 將文件上傳到共享的受保護儲存連結?

  • June 22, 2020

我想使用 cURL 將文件上傳到共享連結(Qnap 儲存連結),如果我只有共享連結的密碼,我沒有使用者名或帳戶,我該怎麼做。我試過了

$ curl -u 'password' --upload-file file.txt  https://MY_LINK_DIR/file.txt

但似乎,這不是正確的方法。誰能幫忙?

您應該嘗試(感謝icarus):

curl -u 'admin:password' [...]

請參閱https://www.qnap.com/en/how-to/faq/article/what-are-the-default-administrator-username-and-password-in-qts

引用自:https://unix.stackexchange.com/questions/594214