赞
踩
世人常说,金九银十。看着一幕幕的面试的人员的回眸失望的眼神,小铁心里是真的难受。在面试当中,不乏会被面试官问到是否对接过第三方的问题。
这不,小铁就过来教大家如何对接第三方文档了么。
之前写过一篇springboot对接第三方微信授权(以及获取用户的头像和昵称等等),有兴趣的小伙伴可以看看。那么,这一期呢。就给大家带来了抖音的授权如何去写。
1、准备工作
官方文档
1)大家需要先打开官方文档,来看里面的内容。
我在这里只需要摘取其中的部分的截图给大家看,具体的话还需要大家仔细去阅读字节的文档。
能懂的都懂,自己去看吧!!! 在这里小铁就不一一介绍了。
2、代码
1)、maven
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.47</version>
</dependency>
2)、工具类
public static <T> String sendPost(String url, T t) throws URISyntaxException {
RestTemplate restTemplate = new RestTemplate();
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
RequestEntity<T> requestEntity = RequestEntity
.post(new URI(url))
.contentType(MediaType.APPLICATION_JSON)
.body(t);
ResponseEntity<String> value = restTemplate.exchange(requestEntity,String.class);
if(value == null){
return "error";
}
String result = value.getBody();
return result;
}
3)发送请求的代码(里面的逻辑都删除了,就怕你们看不懂)
try{
StringBuffer httpsBuffer = new StringBuffer();
httpsBuffer.append("https://developer.toutiao.com/api/apps/v2/jscode2session");
Map<String, String> paramMap = new LinkedHashMap<>();
paramMap.put("appid",DyConstant.appId);
paramMap.put("secret",DyConstant.secret);
paramMap.put("code",jsCode);
paramMap.put("anonymous_code","");
String result = DyUtils.sendPost(httpsBuffer.toString(),paramMap);
Map parse = (Map) JSONObject.parse(result);
Map data1 = (Map) parse.get("data");
String openId = (String) data1.get("openid");
System.out.println(openId);
}catch(URISyntaxException e){
e.printStackTrace();
}
如果你写的和我一样的话,基本就没问题了。大家如果还有什么问题就在底下留言评论吧!小铁有时间看见的话会一一给大家回复的。
时光一去不复返,快乐的日子总是那么短暂。在奔跑的路上不要停下来,我知道你很累。但是真的很美。
我曾踏足山巅,也曾跌入低谷。二者皆让我受益良多。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。