Skip to content

💯 史上最全的整合第三方登录的工具,目前已支持Github、Gitee、微博、钉钉和百度、Coding、腾讯云开发者平台和OSChina等第三方平台的授权登录。 Login, so easy!

License

Notifications You must be signed in to change notification settings

zhanglei/JustAuth

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Login, so easy.

Gitee Github Weibo 钉钉 百度 CSDN Coding 腾讯云开发者平台 OSChina QQ 微信

JustAuth,如你所见,它仅仅是一个第三方授权登录工具类库,它可以让我们脱离繁琐的第三方登录SDK,让登录变得So easy!

快速开始

  • 引入依赖
<dependency>
    <groupId>me.zhyd.oauth</groupId>
    <artifactId>JustAuth</artifactId>
    <version>1.0.0</version>
</dependency>
  • 调用api
// 创建授权request
AuthRequest authRequest = new AuthGiteeRequest(AuthConfig.builder()
        .clientId("clientId")
        .clientSecret("clientSecret")
        .redirectUri("redirectUri")
        .build());
// 生成授权页面
authRequest.authorize();
// 授权登录后会返回一个code,用这个code进行登录
authRequest.login("code");

具体的例子可以参考:实现Gitee授权登录

API列表

💻 平台 ☕ API类 📄 SDK
AuthGiteeRequest 参考文档
AuthGithubRequest 参考文档
AuthWeiboRequest 参考文档
AuthDingTalkRequest 参考文档
AuthBaiduRequest 参考文档
AuthCsdnRequest 待续
AuthCodingRequest 参考文档
AuthTencentCloudRequest 参考文档
AuthOschinaRequest 参考文档
AuthQqRequest 参考文档
AuthWechatRequest 待续

参考图例

授权gitee

Gitee授权登录

授权github

Github授权登录

授权weibo

微博授权登录

授权钉钉

钉钉授权登录

授权百度

百度授权登录

授权csdn

待续

授权coding

Coding授权登录

授权腾讯云开发者平台

腾讯云开发者平台授权登录

授权oschina

授权oschina登录

授权qq

待续

授权微信

待续

更多链接

gitee

github

About

💯 史上最全的整合第三方登录的工具,目前已支持Github、Gitee、微博、钉钉和百度、Coding、腾讯云开发者平台和OSChina等第三方平台的授权登录。 Login, so easy!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%