通過 curl 上傳檔案

這會將檔案從當前資料夾中的本地路徑 matrices.txt 上傳到 Dropbox 帳戶中的/Homework/math/Matrices.txt,並返回上傳檔案的後設資料:

echo "some content here" > matrices.txt

curl -X POST https://content.dropboxapi.com/2/files/upload \
    --header "Authorization: Bearer <ACCESS_TOKEN>" \
    --header "Dropbox-API-Arg: {\"path\": \"/Homework/math/Matrices.txt\"}" \
    --header "Content-Type: application/octet-stream" \
    --data-binary @matrices.txt

<ACCESS_TOKEN> 應替換為 OAuth 2 訪問令牌。