我对Google Drive API有疑问。我有以下代码:
`curl -O http://speedtest.ftp.otenet.gr/files/test100Mb.db
file="test100Mb.db"
mime_type=`file -b --mime $file`
howlong=`wc -c $file | cut -d' ' -f1`
echo $mime_type
echo $howlong
token=%token%
echo $token
curl -H "Authorization: Bearer $token" -H "Content-Type: $mime_type" -H "Content-Length: $howlong" https://www.googleapis.com//upload/drive/v3/files?uploadType=resumable -T test100Mb.db`
我想要实现的是创建脚本,该脚本会自动填充Google驱动器,直到满员为止。不幸的是,最终消息请求太大了。另一件事是我目前不知道如何在上传后重命名文件。
感谢您的帮助