Description
With this library you can easily add authorization via social network in your application
Social Login alternatives and similar packages
Based on the "SocialNetworks" category.
Alternatively, view Social Login alternatives based on common mentions on social networks and blogs.
-
StatusStories
Status Stories = Snapchat stories, Instagram stories, Whatsapp Statuses, Facebook Messenger Stories. -
SocialAuthHelper
Easy social network authorization for Android. Supports Facebook, Twitter, Instagram, Google+, Vkontakte. Made by Stfalcon
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Social Login or a related project?
Popular Comparisons
README
Social Login
With this library you can easily add authorization via social network in your application
Each social network and auth type provides in separate modules There are 2 auth types:
- Implicit - when you login inside your application and receive token
- Explicit - when you login on your server and receive server code for it
Integration
- Add JCenter reference to your app-level build.gradle:
buildscript {
repositories {
...
jcenter()
}
...
}
- Add core module to your module-level build.gradle:
dependencies {
implementation 'com.andrew.social.login:core:{latest-version}'
}
- Add module for any social network you want to include:
dependencies {
implementation 'com.andrew.social.login:{social-name}-{auth-type}:{latest-version}'
}
Usage
You can use this library with two ways:
- If you have only one social network to integrate, you can use this social's Login Action
- If you have two or more social networks, you can use Social Login Manager and map of Social Login Actions
You need to define Social Login Callback
Also if you use several modules that have own initializers, you can use Social Login Initializer
Customize web login
Library provides the way to use your own Activity for web login. To do that you need to inherite your Activity from BaseWebViewLoginActivity and call WebActivityStarter.setWebLoginActivity() before you login
class CustomWebViewLoginActivity : BaseWebViewLoginActivity() {
override fun layoutResId(): Int = R.layout.activity_custom_webview_login
override fun webView(): WebView = webview
override fun showLoading() {
progress.visibility = View.VISIBLE
}
override fun hideLoading() {
progress.visibility = View.INVISIBLE
}
}
Wiki
For more information check Wiki
License
MIT License
Copyright (c) 2019 Andrey Matyushin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*Note that all licence references and agreements mentioned in the Social Login README section above
are relevant to that project's source code only.