Login, so easy.
JustAuth
, as you see, It is just a Java library of third-party authorized login, It's smaller and easier to use. JustAuth is the best third-party login tool written in JAVA.
Source Code:gitee | github
Docs:Reference Doc
- Multiple platform: Has integrated more than a dozen third-party platforms.
- Minimalist: The minimalist design is very simple to use.
- Add maven dependency
These artifacts are available from Maven Central:
<dependency>
<groupId>me.zhyd.oauth</groupId>
<artifactId>JustAuth</artifactId>
<version>1.10.1</version>
</dependency>
- Using JustAuth
// Create authorization request
AuthRequest authRequest = new AuthGiteeRequest(AuthConfig.builder()
.clientId("clientId")
.clientSecret("clientSecret")
.redirectUri("redirectUri")
.build());
// Generate authorization url
authRequest.authorize();
// After authorization to login, it will return: code(auth_code(Alipay only)),state, After version 1.8.0, you can use the AuthCallback as a parameter to the callback interface
// Note: JustAuth saves state for 3 minutes by default. If it is not used within 3 minutes, the expired state will be cleared automatically.
authRequest.login(callback);
Examples:
Springboot Starter
- justauth-spring-boot-starter: Spring Boot integrates best practices with JustAuth
- Fork this project to your repository
- Clone the project after fork.
- Modify the code (either to fix issue, or to add new features)
- Commit and push code to a remote repository
- Create a new PR (pull request), and select
dev
branch - Waiting for author to merge
I look forward to your joining us.