这几天很有兴致的学习了百度云盘文件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类中了 代码如下 [] / @param URLConnection conn通过get方式获取StringBuffer @return / private StringBuffer getJsonString(URLConnection conn) { InputStreamReader isr = null; BufferedReader br = null; StringBuffer = null; try { isr = new InputStreamReader(conn getInputStream() gb ) br = new BufferedReader(isr) String line = null; = new StringBuffer() while ((line = br readLine()) != null) { append(line) append( \r\n ) } } catch (UnsupportedEncodingException e) { e printStackTrace() } catch (IOException e) { e printStackTrace() }finally{ try { if(isr!=null) isr close() } catch (IOException e) { System out println( 流关闭是异常 ) e printStackTrace() } } return ; } / @return @throws Exception 获取云空间的信息 / public CloudInfo getCloudInfo() throws Exception { URL u = new URL( method=info&access_token=你申请的token的值 ; URLConnection conn = u openConnection() // 打开网页链接 // 获取用户云盘信息 String cloudJson = this getJsonString(conn) toString()
// 解析成对象 下面有这个实体对象的类 Gson gson = new Gson() CloudInfo cloudInfo = gson fromJson(cloudJson CloudInfo class) System out println( 云盘信息 +cloudInfo) return cloudInfo; } / @param URLConnection conn通过get方式获取StringBuffer @return / private StringBuffer getJsonString(URLConnection conn) { InputStreamReader isr = null; BufferedReader br = null; StringBuffer = null; try { isr = new InputStreamReader(conn getInputStream() gb ) br = new BufferedReader(isr) String line = null; = new StringBuffer() while ((line = br readLine()) != null) { append(line) append( \r\n ) } } catch (UnsupportedEncodingException e) { e printStackTrace() } catch (IOException e) { e printStackTrace() }finally{ try { if(isr!=null) isr close() } catch (IOException e) { System out println( 流关闭是异常 ) e printStackTrace() } } return ; } / @return @throws Exception 获取云空间的信息 / public CloudInfo getCloudInfo() throws Exception { URL u = new URL( method=info&access_token=你申请的token的值 ; URLConnection conn = u openConnection() // 打开网页链接 // 获取用户云盘信息 String cloudJson = this getJsonString(conn) toString() // 解析成对象 下面有这个实体对象的类 Gson gson = new Gson() CloudInfo cloudInfo = gson fromJson(cloudJson CloudInfo class) System out println( 云盘信息 +cloudInfo) return cloudInfo; } [] package entity; import java lang reflect Type; / @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) { this quota = quota; } / @return the used 已使用空间大小 单位为字节 / public Double getused() { return used; } / @param used the used to set 已使用空间大小 单位为字节 / public void setused(Double used) { this used = 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) { this request_id = request_id; } @Override public String toString() { return new StringBuffer() append( 空间容量 ) append(this getQuota()/ / ) append( M; 已用 ) append(this getused()/ / ) append( M; ) toString() } } package entity; import java lang reflect Type; / @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) { this quota = quota; } / @return the used 已使用空间大小 单位为字节 / public Double getused() { return used; } / @param used the used to set 已使用空间大小 单位为字节 / public void setused(Double used) { this used = 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) { this request_id = request_id; } @Override public String toString() { return new StringBuffer() append( 空间容量 ) append(this getQuota()/ / ) append( M; 已用 ) append(this getused()/ / ) append( M; ) toString() } }
lishixinzhi/Article/program/Java/hx/201311/27162
一、用file_get_contents以get方式获取内容,需要输入内容为:
1、<php
2、$url='>
3、$html=file_get_contents($url);
4、echo$html;
5、>
二、用file_get_contents函数,以post方式获取url,需要输入内容为
1、<php
2、$url='>
3、$data=array('foo'=>'bar');
4、$data=>
5、$opts=array(
6、'>
7、 'method'=>'POST',
8、 'header'=>"Content-type:application/x->
9、 "Content-Length:"strlen($data)"\r\n",
10、 'content'=>$data
11、)
12、);
13、$ctx=stream_context_create($opts);
14、$html=@file_get_contents($url,'',$ctx);
15、>
三、用fopen打开url,以get方式获取内容,需要输入内容为
1、<php
2、$fp=fopen($url,'r');
3、$header=stream_get_meta_data($fp);//获取信息
4、while(!feof($fp)){
5、$result=fgets($fp,1024);
6、}
7、echo"urlheader:{$header}<br>":
8、echo"urlbody:$result";
9、fclose($fp);
10、>
四、用fopen打开url,以post方式获取内容,需要输入内容为
1、<php
2、$data=array('foo2'=>'bar2','foo3'=>'bar3');
3、$data=>
4、$opts=array(
5、'>
6、'method'=>'POST',
7、'header'=>"Content-type:application/x->
8、"Content-Length:"strlen($data)"\r\n",
9、'content'=>$data
10、)
11、);
12、$context=stream_context_create($opts);
13、$html=fopen('>
14、$w=fread($html,1024);
15、echo$w;
16、>
五、用fsockopen函数打开url,以get方式获取完整的数据,包括header和body,需要输入内容为
1、php
2、functionget_url($url,$cookie=false)
3、{
4、$url=parse_url($url);
5、$query=$url[path]""$url[query];
6、echo"Query:"$query;
7、$fp=fsockopen($url[host],$url[port]$url[port]:80,$errno,$errstr,30);
8、if(!$fp){
9、returnfalse;
10、}else{
11、$request="GET$query>
12、$request="Host:$url[host]\r\n";
13、$request="Connection:Close\r\n";
14、if($cookie)$request="Cookie: $cookie\n";
15、$request="\r\n";
16、fwrite($fp,$request);
17、while(!@feof($fp)){
18、$result=@fgets($fp,1024);
19、}
20、fclose($fp);
21、return$result;
22、}
23、}
24、//获取url的html部分,去掉header
25、functionGetUrlHTML($url,$cookie=false)
26、{
27、$rowdata=get_url($url,$cookie);
28、if($rowdata)
29、{
30、$body=stristr($rowdata,"\r\n\r\n");
31、$body=substr($body,4,strlen($body));
32、return$body;
33、}
34、 returnfalse;
35、}
36、>
参考资料:
php-file_get_contents
一、指代不同
1、GET:从指定的资源请求数据。
2、POST:向指定的资源提交要被处理的数据
二、规则不同
1、GET: 请求可被缓存; 请求保留在浏览器历史记录中; 请求可被收藏为书签;请求不应在处理敏感数据时使用; 请求有长度限制; 请求只应当用于取回数据。
2、POST:请求不会被缓存; 请求不会保留在浏览器历史记录中; 不能被收藏为书签; 请求对数据长度没有要求。
三、数据要求不同
1、GET:当发送数据时,GET 方法向 URL 添加数据;URL 的长度是受限制的(URL 的最大长度是 2048 个字符)。与 POST 相比,GET 的安全性较差,因为所发送的数据是 URL 的一部分。
2、POST:发送数据无限制。POST 比 GET 更安全,因为参数不会被保存在浏览器历史或 web 服务器日志中。
参考资料来源:百度百科->
参考资料来源:百度百科-post
get通过地址栏传输,post通过报文传输。get参数有长度限制(受限于url长度),而post无限制。
对于GET方式的请求,浏览器会把>
反义词
lose
英[luːz]美[luːz]
v失去;丢失;遗失;(因事故、年老、死亡等)丧失;被…夺去。
[例句]By that time I had lost interest in the idea
那时我已经对此想法失去兴趣了。
[其他]第三人称单数:loses 现在分词:losing 过去式:lost 过去分词:lost。
在浏览器中输入网址访问资源都是通过GET方式;在FORM提交中,可以通过Method指定提交方式为GET或者POST,默认为GET提交。
>
get是从服务器上获取的数据。
post则是向服务器传送数据。
二者都可以提交数据
get是把参数数据队列加到提交表单的ACTION属性所指的URL中,值和表单内各个字段一一对应,在URL中可以看到。
post是通过>
在列出post与get的区别:
1Post传输数据时,不需要在URL中显示出来,而Get方法要在URL中显示。
2Post传输的数据量大,可以达到2M,而Get方法由于受到URL长度的限制,只能传递大约1024字节
3Post顾名思义,就是为了将数据传送到服务器段,Get就是为了从服务器段取得数据而Get之所以也能传送数据,只是用来设计告诉服务器,你到底需要什么样的数据Post的信息作为>
以上就是关于Baidu云盘API接口的使用使用说明全部的内容,包括:Baidu云盘API接口的使用使用说明、PHP怎么获取表单提交的数据啊、表单的提交有两种方式:GET和POST,这两种方式的区别是什么等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)