Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Justauth | 14,788 | a month ago | 30 | mit | Java | |||||
🏆Gitee 最有价值开源项目 🚀:100: 小而全而美的第三方登录开源组件。目前已支持Github、Gitee、微博、钉钉、百度、Coding、腾讯云开发者平台、OSChina、支付宝、QQ、微信、淘宝、Google、Facebook、抖音、领英、小米、微软、今日头条、Teambition、StackOverflow、Pinterest、人人、华为、企业微信、酷家乐、Gitlab、美团、饿了么、推特、飞书、京东、阿里云、喜马拉雅、Amazon、Slack和 Line 等第三方平台的授权登录。 Login, so easy! | ||||||||||
Spring Boot React Oauth2 Social Login Demo | 1,133 | 3 months ago | 39 | Java | ||||||
Spring Boot React OAuth2 Social Login with Google, Facebook, and Github | ||||||||||
Simplicity | 675 | 5 | 4 years ago | 5 | October 01, 2016 | 17 | apache-2.0 | Swift | ||
A simple way to implement Facebook and Google login in your iOS apps. | ||||||||||
Auth | 526 | 20 | 3 | 3 months ago | 65 | May 07, 2022 | 33 | mit | PHP | |
:atom: Social (OAuth1\OAuth2\OpenID\OpenIDConnect) sign with PHP :shipit: | ||||||||||
Mern Boilerplate | 296 | a month ago | 2 | JavaScript | ||||||
Full stack boilerplate with React, Redux, Express, Mongoose, Passport Local, JWT, Facebook and Google OAuth out of the box. | ||||||||||
React Native Google Sign In | 211 | 36 | 1 | 5 years ago | 17 | November 23, 2017 | 46 | mit | Objective-C | |
React Native Wrapper for Latest Google Sign-In OAuth SDK / API | ||||||||||
Socialloginmanager | 178 | 6 years ago | 5 | apache-2.0 | Java | |||||
DEPRECATED | ||||||||||
Worker Auth Providers | 116 | 1 | 5 months ago | 18 | January 10, 2023 | 3 | TypeScript | |||
worker-auth-providers is an open-source providers to make authentication easy with workers. Very lightweight script which doesn't need a lot of dependencies. Plug it with any framework or template of workers. | ||||||||||
Androidoauth | 86 | 7 years ago | 2 | Java | ||||||
A simple way to authenticate with Google and Facebook using OAuth 2.0 in Android | ||||||||||
Spring Security Oauth2 Social | 39 | 4 years ago | 1 | Java | ||||||
:octocat: Spring Security OAuth2 Social Google Facebook |
Login, so easy.
QQ 230017570
justauth justauth``ja
www.justauth.cn
JustAuth******** SDKSo easy!
JustAuth GithubGiteeGoogleFacebookTwitterStackOverflow
<dependency>
<groupId>me.zhyd.oauth</groupId>
<artifactId>JustAuth</artifactId>
<version>{latest-version}</version>
</dependency>
latest-version
JustAuth ossrh
<repositories> <repository> <id>ossrh-snapshot</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories>
JustAuth
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <snapshots> + <updatePolicy>always</updatePolicy> <enabled>true</enabled> </snapshots>
**** HTTP __
hutool-http
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-http</artifactId>
<version>5.7.7</version>
</dependency>
httpclient
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
</dependency>
okhttp
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.9.1</version>
</dependency>
// request
AuthRequest authRequest = new AuthGiteeRequest(AuthConfig.builder()
.clientId("clientId")
.clientSecret("clientSecret")
.redirectUri("redirectUri")
.build());
//
authRequest.authorize("state");
// codeauth_codestate1.8.0AuthCallback
// JustAuthstate33state
authRequest.login(callback);
AuthConfig
AuthRequest authRequest = AuthRequestBuilder.builder()
.source("github")
.authConfig(AuthConfig.builder()
.clientId("clientId")
.clientSecret("clientSecret")
.redirectUri("redirectUri")
.build())
.build();
//
authRequest.authorize("state");
// codeauth_codestate1.8.0AuthCallback
// JustAuthstate33state
authRequest.login(callback);
AuthConfig
AuthRequest authRequest = AuthRequestBuilder.builder()
.source("gitee")
.authConfig((source) -> {
// source AuthConfig
// sql
return AuthConfig.builder()
.clientId("clientId")
.clientSecret("clientSecret")
.redirectUri("redirectUri")
.build();
})
.build();
Assert.assertTrue(authRequest instanceof AuthGiteeRequest);
System.out.println(authRequest.authorize(AuthStateUtils.createState()));
AuthRequest authRequest = AuthRequestBuilder.builder()
// AuthSource
.extendSource(AuthExtendSource.values())
// source AuthExtendSource name
.source("other")
// ...
.build();
JustAuth
JAP
: https://gitee.com/fujieid/jap
spring-boot-demo
spring boot : xkcoding/spring-boot-demo
mica
SpringBoot : lets-mica/mica
sureness
restful apisureness