使用SpringBoot+OkHttp+fastjson实现Github的OAuth第三方登录
作者:技不如人甘拜下风 时间:2023-03-18 01:27:34
一、在GitHub上创建一个OAuth
二、OAuth的原理
Spring官方文档
三、OkHttp的使用
OkHttp官方网站
1.Post
代码示例
//官方文档: public static final MediaType JSON
// = MediaType.get("application/json; charset=utf-8");
MediaType mediaType = MediaType.get("application/json; charset=utf-8");//去掉前缀,并且修改MediaType对象名,因为一会使用fastjson变量会重名
OkHttpClient client = new OkHttpClient();//第二句照抄
RequestBody body = RequestBody.create(json,mediaType);//直接复制方法体中的内容
Request request = new Request.Builder()
.url("")//填写要发送请求的地址
.post(body)
.build();
try (Response response = client.newCall(request).execute()) {
return response.body().string();//返回的字符串(json)
}
2.Get
代码示例
OkHttpClient client = new OkHttpClient();//同上
Request request = new Request.Builder()//直接复制方法体中的内容
.url(url)//同上
.build();
try (Response response = client.newCall(request).execute()) {
return response.body().string();//同上
}
四、fastJson的使用
JSON.toJSONString(实体类)//将实体类转换为JSON字符串
JSON.parseObject(string, 实体类.class);//将JSON字符串转换为实体类
五、代码示例
前端代码
<a href="https://github.com/login/oauth/authorize?client_id=xxx&redirect_uri=http://127.0.0.1:8080/xxx&scope=user&state=1" rel="external nofollow" >Login</a>
//scope和state不写可能会报错
@Controller
public class AuthorizeController {
@Autowired
GithubProvider githubProvider;
@GetMapping("/callback")
public String callback(@RequestParam(name ="code") String code, @RequestParam(name ="state") String state){
AccessTokenDTO accessTokenDTO = new AccessTokenDTO();
accessTokenDTO.setClient_id("");
accessTokenDTO.setClient\_secret("");
accessTokenDTO.setCode(code);
accessTokenDTO.setState(state);
accessTokenDTO.setRedirect\_uri("https://github.com/login/oauth/access_token");
String token = githubProvider.getAccessToken(accessTokenDTO);
GithubUser githubUser = githubProvider.getUser(token);
return "index";
}
}
@Component
public class GithubProvider {
public String getAccessToken(AccessTokenDTO accessTokenDTO){
MediaType mediaType = MediaType.get("application/json; charset=utf-8");
OkHttpClient client = new OkHttpClient();
RequestBody body = RequestBody.create(JSON.toJSONString(accessTokenDTO),mediaType);//用fastjson将实体类转换为json字符串传入
Request request = new Request.Builder()
.url("https://github.com/login/oauth/access_token?cilen_id=xxx&client_secret=xxx"+accessTokenDTO.getCode()+
"&redirect_uri=http://127.0.0.1:8080/callback&state=1")
.post(body)
.build();
try (Response response = client.newCall(request).execute()) {
String string = response.body().string();
String token = string.split("&")\[0\].split("=")\[1\];
return token;
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
public GithubUser getUser(String token){
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://api.github.com/user?access_token="+token)
.build();
try (Response response = client.newCall(request).execute()) {
String string = response.body().string();
GithubUser githubUser = JSON.parseObject(string, GithubUser.class);//用fastjson将json字符串转换为实体类
return githubUser;
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
}
来源:https://segmentfault.com/a/1190000021669924
标签:SpringBoot,OkHttp,fastjson
0
投稿
猜你喜欢
MyBatis中的resultMap简要概述
2023-11-16 06:51:34
Android 实现图片生成卷角和圆角缩略图的方法
2021-08-12 16:14:12
简单实现Java版学生管理系统
2022-06-22 15:16:19
SpringMVC结构简介及常用注解汇总
2023-10-25 09:16:59
Java对xls文件进行读写操作示例代码
2023-08-04 17:55:31
详细解读java同步之synchronized解析
2022-08-01 15:27:05
C#中使用IrisSkin2.dll美化WinForm程序界面的方法
2023-11-25 20:45:58
Android实现简易秒表功能
2021-08-29 11:06:58
Android使用线程获取网络图片的方法
2023-05-28 22:29:28
Android开发实现浏览器全屏显示功能
2022-01-01 18:01:48
在IDEA里gradle配置和使用的方法步骤
2023-11-23 16:07:58
举例分析Python中设计模式之外观模式的运用
2021-11-24 01:54:48
Java线程池ThreadPoolExecutor原理及使用实例
2022-04-30 05:53:00
Java实现计算器设计
2023-08-18 13:36:54
Java Web 简单的分页显示实例代码
2023-04-19 20:06:21
C++中类的默认成员函数详解
2022-08-01 16:41:04
java FastJson的简单用法
2022-07-07 23:51:47
Spring 注入static属性值方式
2022-07-21 12:40:18
详解C#开发Android应用程序的流程
2021-08-11 21:32:59
Android 数据库文件存取至储存卡的方法
2023-05-08 19:12:14