Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Supertokens Core | 10,125 | a day ago | 100 | other | Java | |||||
Open source alternative to Auth0 / Firebase Auth / AWS Cognito | ||||||||||
Django Allauth | 8,319 | 5,160 | 126 | 2 days ago | 70 | March 31, 2023 | 98 | mit | Python | |
Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication. | ||||||||||
Zitadel | 4,706 | 13 hours ago | 947 | December 20, 2022 | 432 | apache-2.0 | Go | |||
ZITADEL - Identity infrastructure, simplified for you. | ||||||||||
Flask Appbuilder | 4,322 | 301 | 32 | 8 days ago | 302 | July 27, 2023 | 159 | bsd-3-clause | Python | |
Simple and rapid application development framework, built on top of Flask. includes detailed security, auto CRUD generation for your models, google charts and much more. Demo (login with guest/welcome) - http://flaskappbuilder.pythonanywhere.com/ | ||||||||||
Alfred Github Workflow | 2,806 | 6 months ago | 9 | mit | PHP | |||||
GitHub Workflow for Alfred 4 | ||||||||||
Vouch Proxy | 2,391 | a month ago | 160 | January 21, 2023 | 59 | mit | Go | |||
an SSO and OAuth / OIDC login solution for Nginx using the auth_request module | ||||||||||
Login With | 2,293 | 2 | 2 years ago | 9 | August 08, 2018 | 35 | mit | JavaScript | ||
Stateless login-with microservice for OAuth | ||||||||||
Hanko | 2,282 | 5 | 10 hours ago | 24 | August 02, 2023 | 57 | other | TypeScript | ||
Open authentication and user management for the passkey era | ||||||||||
Loginsrv | 1,750 | 2 | 3 years ago | 7 | February 11, 2021 | 27 | mit | Go | ||
JWT login microservice with plugable backends such as OAuth2, Google, Github, htpasswd, osiam, .. | ||||||||||
Gologin | 1,635 | 7 | 6 | 4 days ago | 16 | January 07, 2023 | mit | Go | ||
Go login handlers for authentication providers (OAuth1, OAuth2) |
Please check out SimpleAuth
This library aims to eliminate boilerplate code for social login.
To use this library your minSdkVersion must be >= 15.
In your project level build.gradle :
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
In your app level build.gradle :
dependencies {
compile 'com.github.jaychang0917:SocialLoginManager:{latest_version}'
}
You must setup your Manifest.xml
for facebook / google login to use this libary.
For example:
<application
...
<meta-data
android:name="com.facebook.sdk.ApplicationId"
android:value="@string/facebook_app_id" />
<activity
android:name="com.facebook.FacebookActivity"
android:configChanges=
"keyboard|keyboardHidden|screenLayout|screenSize|orientation"
android:label="@string/app_name"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
tools:replace="android:theme" />
<activity
android:name="com.facebook.CustomTabActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="@string/fb_login_protocol_scheme" />
</intent-filter>
</activity>
</application>
google-services.json
under app
directory.classpath 'com.google.gms:google-services:3.0.0'
in your project level build.gralde.apply plugin: 'com.google.gms.google-services'
in your app level build.graldepublic class App extends MultiDexApplication {
@Override
public void onCreate() {
super.onCreate();
SocialLoginManager.init(this);
}
}
public class MainActivity extends AppCompatActivity {
private static final String TAG = MainActivity.class.getSimpleName();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button fbLoginButton = (Button) findViewById(R.id.fbLoginButton);
fbLoginButton.setOnClickListener(view -> {
loginByFacebook();
});
Button googleLoginButton = (Button) findViewById(R.id.googleLoginButton);
googleLoginButton.setOnClickListener(view -> {
loginByGoogle();
});
}
private void loginByFacebook() {
SocialLoginManager.getInstance(this)
.facebook()
.login()
.subscribe(socialUser -> {
Log.d(TAG, "userId: " + socialUser.userId);
Log.d(TAG, "photoUrl: " + socialUser.photoUrl);
Log.d(TAG, "accessToken: " + socialUser.accessToken);
Log.d(TAG, "name: " + socialUser.profile.name);
Log.d(TAG, "email: " + socialUser.profile.email);
Log.d(TAG, "pageLink: " + socialUser.profile.pageLink);
},
error -> {
Log.d(TAG, "error: " + error.getMessage());
});
}
private void loginByGoogle() {
SocialLoginManager.getInstance(this)
.google(getString(R.string.default_web_client_id))
.login()
.subscribe(socialUser -> {
Log.d(TAG, "userId: " + socialUser.userId);
Log.d(TAG, "photoUrl: " + socialUser.photoUrl);
Log.d(TAG, "accessToken: " + socialUser.accessToken);
Log.d(TAG, "email: " + socialUser.profile.email);
Log.d(TAG, "name: " + socialUser.profile.name);
},
error -> {
Log.d(TAG, "error: " + error.getMessage());
});
}
private void loginByInstagram() {
SocialLoginManager.getInstance(this)
.instagram("client_id", "client_secret", "redirect_url")
.login()
.subscribe(socialUser -> {
Log.d(TAG, "userId: " + socialUser.userId);
Log.d(TAG, "photoUrl: " + socialUser.photoUrl);
Log.d(TAG, "accessToken: " + socialUser.accessToken);
Log.d(TAG, "name: " + socialUser.profile.name);
Log.d(TAG, "fullName: " + socialUser.profile.fullName);
}, error -> {
Log.d(TAG, "error: " + error.getMessage());
});
}
}
Copyright 2016 Jay Chang
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.