一. 创建应用名称,如exp
二. 开通PCS API的操作步骤如下:1. 创建应用exp后进入应用信息页面;
2. 在应用信息页面左侧菜单栏中,找到“开放API > API管理 > API列表”,点击打开相应页面;
3. 在“API服务列表”页面,点击“API服务”栏中“PCS API”项对应的“开启”键;
4. 输入对应的文件目录设置项并点击“确认”,即可完成PCS API权限开通。
记录下API Key和Secret Key三. Server端使用百度OAuth2.0授权调用开放API流程详细文档:http://developer.baidu.com/wiki/index.php?title=docs/oauth/application1.在浏览器中输入:https://openapi.baidu.com/oauth/2.0/authorize?response_type=code&client_id={ API Key}&redirect_uri=oob2. 复制下授权码3. 获取到Access Token在浏览器中输入:https://openapi.baidu.com/oauth/2.0/token?grant_type=authorization_code&code=7e92052fdc4f318151b9a3a9059d6f&client_id=QRSZjnMu3FDtnfzIZWDZ93&client_secret=VGIyZDUEQtXRaG3N3YVYKtfnMj3zS5&redirect_uri=oob从而获取到Access Token输入结果如:{ "access_token": "1.a6b7dbd428f731035f771b8d15063f61.86400.1292922000-2346678-124328", "expires_in": 86400, "refresh_token": "2.385d55f8615fdfd9edb7c4b5ebdc3e39.604800.1293440400-2346678-124328", "scope": "basic email", "session_key": "ANXxSNjwQDugf8615OnqeikRMu2bKaXCdlLxn", "session_secret": "248APxvxjCZ0VEC43EYrvxqaK4oZExMB",}四、可以通过api操作云盘了文档见:http://developer.baidu.com/wiki/index.php?title=docs/pcs/rest/file_data_apis_list举例:在vps端获取磁盘容量信息wget -O - "https://pcs.baidu.com/rest/2.0/pcs/quota?method=info&access_token={token}" 2>/dev/null