电脑故障

位置:IT落伍者 >> 电脑故障 >> 浏览文章

Baidu云盘API接口的使用使用说明


发布日期:2022/8/14
 

这几天很有兴致的学习了百度云盘文件API接口的使用初步是想做一个在线android应用应用中的文档是存放在百度云盘的

主要是分一下几个步骤

注册百度账号

登录百度开发者中心

创建移动应用获取对应的(API Key Secret Key)

开通pcs API权限

获取ACCESS_token(认证编码)

开发应用

注意

开通移动应用获取key

获取token的时候我使用的安卓获取的方式

通过我写对应api的例子我发现其实就两种情况一种是get方式提交数据另外一种是post方式提交数据

get方式提交数据我们用获取云盘的信息为例

获取云盘信息前我们要知道我们要准备好什么数据

请求参数

url: 标明我们要访问的网址路径 值固定问

method:标明我们是请求云盘信息 值固定为info

acceess_token:准入标识 值是我们自己申请的

接收返回参数

quota:云盘总容量

used:云盘使用容量

request_id:该请求的表示没啥用

返回的一个json串如下格式{quota: used:request_id:}

我在做的时候你使用Gson工具将json串转换到对应的entity类中了 代码如下

[html] /**

* @param URLConnection conn通过get方式获取StringBuffer

* @return

*/

private StringBuffer getJsonString(URLConnection conn) {

InputStreamReader isr = null;

BufferedReader br = null;

StringBuffer sb = null;

try {

isr = new InputStreamReader(conngetInputStream()gb

br = new BufferedReader(isr)

String line = null;

sb = new StringBuffer()

while ((line = brreadLine()) != null) {

sbappend(line)

sbappend(\r\n

}

} catch (UnsupportedEncodingException e) {

eprintStackTrace()

} catch (IOException e) {

eprintStackTrace()

}finally{

try {

if(isr!=null)

isrclose()

} catch (IOException e) {

Systemoutprintln(流关闭是异常

eprintStackTrace()

}

}

return sb;

}

/**

* @return

* @throws Exception

* 获取云空间的信息

*/

public CloudInfo getCloudInfo() throws Exception {

URL u = new URL(?method=info&access_token=你申请的token的值;

URLConnection conn = uopenConnection()// 打开网页链接

// 获取用户云盘信息

String cloudJson = thisgetJsonString(conn)toString()

// 解析成对象 下面有这个实体对象的类

Gson gson = new Gson()

CloudInfo cloudInfo = gsonfromJson(cloudJson CloudInfoclass)

Systemoutprintln(云盘信息+cloudInfo)

return cloudInfo;

}

/**

* @param URLConnection conn通过get方式获取StringBuffer

* @return

*/

private StringBuffer getJsonString(URLConnection conn) {

InputStreamReader isr = null;

BufferedReader br = null;

StringBuffer sb = null;

try {

isr = new InputStreamReader(conngetInputStream()gb

br = new BufferedReader(isr)

String line = null;

sb = new StringBuffer()

while ((line = brreadLine()) != null) {

sbappend(line)

sbappend(\r\n

}

} catch (UnsupportedEncodingException e) {

eprintStackTrace()

} catch (IOException e) {

eprintStackTrace()

}finally{

try {

if(isr!=null)

isrclose()

} catch (IOException e) {

Systemoutprintln(流关闭是异常

eprintStackTrace()

}

}

return sb;

}

/**

* @return

* @throws Exception

* 获取云空间的信息

*/

public CloudInfo getCloudInfo() throws Exception {

URL u = new URL(?method=info&access_token=你申请的token的值;

URLConnection conn = uopenConnection()// 打开网页链接

// 获取用户云盘信息

String cloudJson = thisgetJsonString(conn)toString()

// 解析成对象 下面有这个实体对象的类

Gson gson = new Gson()

CloudInfo cloudInfo = gsonfromJson(cloudJson CloudInfoclass)

Systemoutprintln(云盘信息+cloudInfo)

return cloudInfo;

}

[html] package comentity;

import javalangreflectType;

/**

* @author ydcun 获取云空间的信息 例如

* {quota: 空间配额单位为字节

* used: 已使用空间大小 单位为字节

* request_id:}

*/

public class CloudInfo{

private Double quota;

private Double used;

private Double request_id;

/**

* @return the quota 空间配额单位为字节

*/

public Double getQuota() {

return quota;

}

/**

* @param quota the quota to set 空间配额单位为字节

*/

public void setQuota(Double quota) {

thisquota = quota;

}

/**

* @return the used 已使用空间大小 单位为字节

*/

public Double getused() {

return used;

}

/**

* @param used the used to set 已使用空间大小 单位为字节

*/

public void setused(Double used) {

thisused = used;

}

/**

* @return the request_id

*/

public Double getRequest_id() {

return request_id;

}

/**

* @param request_id the request_id to set

*/

public void setRequest_id(Double request_id) {

thisrequest_id = request_id;

}

@Override

public String toString() {

return new StringBuffer()append(空间容量append(thisgetQuota()//append(M; 已用append(thisgetused()//append(M; toString()

}

}

package comentity;

import javalangreflectType;

/**

* @author ydcun 获取云空间的信息 例如

* {quota: 空间配额单位为字节

* used: 已使用空间大小 单位为字节

* request_id:}

*/

public class CloudInfo{

private Double quota;

private Double used;

private Double request_id;

/**

* @return the quota 空间配额单位为字节

*/

public Double getQuota() {

return quota;

}

/**

* @param quota the quota to set 空间配额单位为字节

*/

public void setQuota(Double quota) {

thisquota = quota;

}

/**

* @return the used 已使用空间大小 单位为字节

*/

public Double getused() {

return used;

}

/**

* @param used the used to set 已使用空间大小 单位为字节

*/

public void setused(Double used) {

thisused = used;

}

/**

* @return the request_id

*/

public Double getRequest_id() {

return request_id;

}

/**

* @param request_id the request_id to set

*/

public void setRequest_id(Double request_id) {

thisrequest_id = request_id;

}

@Override

public String toString() {

return new StringBuffer()append(空间容量append(thisgetQuota()//append(M; 已用append(thisgetused()//append(M; toString()

}

}

通过post方式提交 我用上传单个文件为例子

同样我们也先了解下上传文件要参数设置

请求参数

url: 标明我们要访问的网址路径 值固定问

method:标明我们是请求云盘信息 值固定为upload

acceess_token:准入标识 值是我们自己申请的

path:是我们要上传到云盘的那个路径下 如/apps/myBaiduCloud/ myBaiduCloud是我们的应用名称(当你获取koten后就会自动生成以你应用名称为名的文件夹)

file:这个就是我们要上传的文件了(要求用post方式上传)

ondup:可选参数标识当有重名的文件的时候处理方式具体见api

接收返回参数

返回的也是json串

path:为我们上传的文件保存的全路径

size:文件的大小有多少字节

ctime/mtime:文件的创建修改时间

其他参数介绍点小标题去api中查看

{

path : /apps/album/READMEmd

size :

ctime :

mtime :

md : cbafccef

fs_id :

request_id:

}

我在做的时候也是将其封装到实体类中了这里和上面一样不详述我们重点看下提交文件是怎么提交的代码如下

[java] /**

* @param path 云盘存放路径

* @param name 要上传的文件

* @return

* @throws Exception

*/

public FileBase uploadFile(String pathFile file) throws Exception{

//模拟文件

String fileName=READMEmd;

file = new File(fileName)

path=%fapps%fmybaidu%f; // 我用的是url编码过源码为> /apps/mybaidu/

/

//将需要url传值的参数和url组装起来

String u =+path+filegetName()+&method=upload&access_token=你自己申请的token值;

PostMethod filePost = new PostMethod(u)

//post提交的参数

Part[] parts = {new FilePart(fileNamefile)};

//设置多媒体参数作用类似form表单中的enctype=multipart/formdata

filePostsetRequestEntity(new MultipartRequestEntity(parts filePostgetParams()))

HttpClient clients = new HttpClient()

//响应代码

int status = clientsexecuteMethod(filePost)

Systemoutprintln(成功上传+path+fileName)

BufferedReader buReader = new BufferedReader(new InputStreamReader(filePostgetResponseBodyAsStream()utf))

StringBuffer sb = new StringBuffer()

String line;

while((line=buReaderreadLine())!=null){

sbappend(line)

}

buReaderclose()

// 解析成对象

Gson gson = new Gson()

FileBase cloudInfo = gsonfromJson(sbtoString() FileBaseclass)

return cloudInfo;

}

/**

* @param path 云盘存放路径

* @param name 要上传的文件

* @return

* @throws Exception

*/

public FileBase uploadFile(String pathFile file) throws Exception{

//模拟文件

String fileName=READMEmd;

file = new File(fileName)

path=%fapps%fmybaidu%f; // 我用的是url编码过源码为> /apps/mybaidu/

/

//将需要url传值的参数和url组装起来

String u =+path+filegetName()+&method=upload&access_token=你自己申请的token值;

PostMethod filePost = new PostMethod(u)

//post提交的参数

Part[] parts = {new FilePart(fileNamefile)};

//设置多媒体参数作用类似form表单中的enctype=multipart/formdata

filePostsetRequestEntity(new MultipartRequestEntity(parts filePostgetParams()))

HttpClient clients = new HttpClient()

//响应代码

int status = clientsexecuteMethod(filePost)

Systemoutprintln(成功上传+path+fileName)

BufferedReader buReader = new BufferedReader(new InputStreamReader(filePostgetResponseBodyAsStream()utf))

StringBuffer sb = new StringBuffer()

String line;

while((line=buReaderreadLine())!=null){

sbappend(line)

}

buReaderclose()

// 解析成对象

Gson gson = new Gson()

FileBase cloudInfo = gsonfromJson(sbtoString() FileBaseclass)

return cloudInfo;

}

上面代码成功后我们就会在/apps/mybaidu/目录下找到READMEmd文件

commonscodecjar

commons

commonsloggingjar

gsonjar

jsoupjar

其他的api怎么用百度给了一个很好的演示平台

上一篇:不使用泛型如何保证程序的可读性

下一篇:敏捷开发技巧-消除代码异味