您好,登錄后才能下訂單哦!
這篇文章跟大家分析一下“怎么使用百度網(wǎng)盤API上傳備份文件”。內(nèi)容詳細(xì)易懂,對(duì)“怎么使用百度網(wǎng)盤API上傳備份文件”感興趣的朋友可以跟著小編的思路慢慢深入來閱讀一下,希望閱讀后能夠?qū)Υ蠹矣兴鶐椭?。下面跟著小編一起深入學(xué)習(xí)“怎么使用百度網(wǎng)盤API上傳備份文件”的知識(shí)吧。
1.首先加入百度開發(fā)者:http://developer.baidu.com/dev#/create
2.任意創(chuàng)建一個(gè)應(yīng)用獲取API Key并開通PCS API權(quán)限,開放API > API管理 > API列表 > API服務(wù) > PCS API > 開啟
3.通過剛剛新建應(yīng)用的API Key獲取device code和user_code
curl -k -L -d "client_id=<api_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:
curl -k -L -d "grant_type=device_token&code=<code>&client_id=<api_id>&client_secret=<api_secret>" \
"https://openapi.baidu.com/oauth/2.0/token"
5.此時(shí)通過access_token就可對(duì)網(wǎng)盤文件進(jìn)行操作了,獲取到access_token的有效期為30天,過期后通過refresh_token重新獲取access_token
curl -k -L -d "grant_type=refresh_token&refresh_token=<refresh_token>&client_id=\
<api_id>&client_secret=<api_secret>"
6.獲取網(wǎng)盤配額:
curl -k -L "https://pcs.baidu.com/rest/2.0/pcs/quota?method=\
info&access_token=<access_token>"
7.上傳文件:
curl -k -L -F "file=@haiyun.me.tar.gz" "https://c.pcs.baidu.com/rest/2.0/pcs/file?method=upload&\
access_token=<access_token>&path=/apps/pcsupload/haiyun.me.tar.gz"
8.下載文件:
curl -k -O "https://d.pcs.baidu.com/rest/2.0/pcs/file?method=download&access_token=<access_token>&\
path=/apps/pcsupload/haiyun.me.tar.gz"
9.刪除文件:
curl -k -L "https://pcs.baidu.com/rest/2.0/pcs/file?method=delete&access_token=<access_token>\
&path=/apps/pcsupload/haiyun.me.tar.gz"
10.復(fù)制文件:
curl -k -L "https://c.pcs.baidu.com/rest/2.0/pcs/file?method=copy&access_token=<access_token>\
&from=/apps/pcsupload/haiyun.me.tar.gz&to=/apps/pcsupload/www.haiyun.me.tar.gz"
11.列出目錄內(nèi)文件:
curl -k -L "https://pcs.baidu.com/rest/2.0/pcs/file?method=list&access_token=<access_token>\
&path=/apps/pcsupload/"
關(guān)于怎么使用百度網(wǎng)盤API上傳備份文件就分享到這里啦,希望上述內(nèi)容能夠讓大家有所提升。如果想要學(xué)習(xí)更多知識(shí),請(qǐng)大家多多留意小編的更新。謝謝大家關(guān)注一下億速云網(wǎng)站!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。