51Testing软件测试论坛

标题: Java接口测试java代码 [打印本页]

作者: 初心若雪_001    时间: 2018-3-13 14:50
标题: Java接口测试java代码
//1.新建一个客户端对象
CloseableHttpClient client=HttpClients.createDefault();
//2.使用URLBuilder工具类构造一个get类型的url,来设置协议的
URI url=new URIBuilder().setScheme("https")//设置接口使用的协议
.setHost("api.weixin.qq.com")//设置主机地址
.setPath("/cgi-bin/token")//设置接口地址
.setParameter("appid","wx0772af203a544dd7")
.setParameter("secret","f686bbfa5c596a9ff313422cb6121400")
.setParameter("grant_type","client_credential").build();
//3.实例化一个HttpGet类型的对象,并使用url进行初始化
HttpGet get=new HttpGet(url);
//4.新建一个closeableHttpResponse类型的响应对象,接受客户端执行get请求的结果
CloseableHttpResponse response=client.execute(get);
//5.从响应对象中提取响应实体
String result=EntityUtils.toString(response.getEntity());
//6.打印结果
System.out.println(result);

作者: libingyu135    时间: 2018-4-24 14:29
666




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2