Linux VPS使用百度網(wǎng)盤API上傳備份文件
最近百度網(wǎng)盤將空間升級到了永久1TB,鑒于百度的實力用做數(shù)據(jù)備份空間不錯,不過百度網(wǎng)盤沒有Linux下的客戶端,上傳管理文件需通過百度開放云平臺訪問PCS資源的系列接口。
1.首先加入百度開發(fā)者:http://developer.baidu.com/dev#/create
2.任意創(chuàng)建一個應(yīng)用獲取API Key并開通PCS API權(quán)限,開放API > API管理 > API列表 > API服務(wù) > PCS API > 開啟
3.通過剛剛新建應(yīng)用的API Key獲取device code和user_code
1 2
curl -k -L -d "client_id=&response_type=device_code&scope=basic,netdisk" "https://openapi.baidu.com/oauth/2.0/device/code"
4.在瀏覽器打開https://openapi.baidu.com/device輸入獲取到的user_code并連接,然后通過device code獲取refresh_token和access_token:
1 2
curl -k -L -d "grant_type=device_token&code=&client_id=&client_secret=" "https://openapi.baidu.com/oauth/2.0/token"
5.此時通過access_token就可對網(wǎng)盤文件進(jìn)行操作了,獲取到access_token的有效期為30天,過期后通過refresh_token重新獲取access_token
1 2
curl -k -L -d "grant_type=refresh_token&refresh_token=&client_id= &client_secret= "
獲取網(wǎng)盤配額:
1 2
curl -k -L "https://pcs.baidu.com/rest/2.0/pcs/quota?method= info&access_token="
上傳文件:
1 2
curl -k -L -F "file=@haiyun.me.tar.gz" "https://c.pcs.baidu.com/rest/2.0/pcs/file?method=upload& access_token=&path=/apps/pcsupload/haiyun.me.tar.gz"
下載文件:
1 2
curl -k -O "https://d.pcs.baidu.com/rest/2.0/pcs/file?method=download&access_token=& path=/apps/pcsupload/haiyun.me.tar.gz"
刪除文件:
1 2
curl -k -L "https://pcs.baidu.com/rest/2.0/pcs/file?method=delete&access_token=&path=/apps/pcsupload/haiyun.me.tar.gz"
復(fù)制文件:
1 2
curl -k -L "https://c.pcs.baidu.com/rest/2.0/pcs/file?method=copy&access_token=&from=/apps/pcsupload/haiyun.me.tar.gz&to=/apps/pcsupload/www.haiyun.me.tar.gz"
列出目錄內(nèi)文件:
1 2
curl -k -L "https://pcs.baidu.com/rest/2.0/pcs/file?method=list&access_token=&path=/apps/pcsupload/"
更多操作:http://developer.baidu.com/wiki/index.php?title=docs/pcs/rest/file_data_apis_list?