All Projects → mukeshsolanki → Social Login Helper Deprecated

mukeshsolanki / Social Login Helper Deprecated

Licence: mit
A simple android library to easily implement social login into your android project

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Social Login Helper Deprecated

Oauth
🔗 OAuth 2.0 implementation for various providers in one place.
Stars: ✭ 336 (+314.81%)
Mutual labels:  google, linkedin, login, facebook, instagram
Nemiro.oauth.dll
Nemiro.OAuth is a class library for authorization via OAuth protocol in .NET Framework
Stars: ✭ 45 (-44.44%)
Mutual labels:  google, login, twitter, facebook, instagram
Keyring
Keyring is an authentication framework for WordPress. It comes with definitions for a variety of HTTP Basic, OAuth1 and OAuth2 web services. Use it as a common foundation for working with other web services from within WordPress code.
Stars: ✭ 52 (-35.8%)
Mutual labels:  google, linkedin, twitter, facebook, instagram
Login With
Stateless login-with microservice for OAuth
Stars: ✭ 2,301 (+2740.74%)
Mutual labels:  google, linkedin, login, twitter, facebook
Daily Coding Problem
Series of the problem 💯 and solution ✅ asked by Daily Coding problem👨‍🎓 website.
Stars: ✭ 90 (+11.11%)
Mutual labels:  google, linkedin, twitter, facebook
Socialite
Socialite is an OAuth2 Authentication tool. It is inspired by laravel/socialite, you can easily use it without Laravel.
Stars: ✭ 1,026 (+1166.67%)
Mutual labels:  google, linkedin, login, facebook
Socialcounters
jQuery/PHP - Collection of Social Media APIs that display number of your social media fans. Facebook Likes, Twitter Followers, Instagram Followers, YouTube Subscribers, etc..
Stars: ✭ 104 (+28.4%)
Mutual labels:  google, twitter, facebook, instagram
Yii2 Authclient
Yii 2 authclient extension.
Stars: ✭ 430 (+430.86%)
Mutual labels:  google, linkedin, twitter, facebook
Pow assent
Multi-provider authentication for your Pow enabled app
Stars: ✭ 236 (+191.36%)
Mutual labels:  google, twitter, facebook, instagram
Hackathon Starter Kit
A Node-Typescript/Express Boilerplate with Authentication(Local, Github, Facebook, Twitter, Google, Dropbox, LinkedIn, Discord, Slack), Authorization, and CRUD functionality + PWA Support!
Stars: ✭ 242 (+198.77%)
Mutual labels:  google, linkedin, twitter, facebook
Assent
Multi-provider framework in Elixir
Stars: ✭ 126 (+55.56%)
Mutual labels:  google, twitter, facebook, instagram
aboutmeinfo-telegram-bot
ℹ️ About Me Info Bot: Share your social media and links on Telegram
Stars: ✭ 20 (-75.31%)
Mutual labels:  social, instagram, facebook, linkedin
Social Media Profiles Regexs
📇 Extract social media profiles and more with regular expressions
Stars: ✭ 324 (+300%)
Mutual labels:  linkedin, twitter, facebook, instagram
Feeds
Importiert Daten aus API-Quellen wie Facebook, Instagram, Twitter, YouTube, Vimeo oder RSS (ehemals YFeed)
Stars: ✭ 34 (-58.02%)
Mutual labels:  twitter, facebook, instagram
Auth
:atom: Social (OAuth1\OAuth2\OpenID\OpenIDConnect) sign with PHP
Stars: ✭ 457 (+464.2%)
Mutual labels:  social, twitter, facebook
Social Post Bundle
Symfony bundle to publish status updates on Facebook, LinkedIn and Twitter.
Stars: ✭ 35 (-56.79%)
Mutual labels:  linkedin, twitter, facebook
Buji Pac4j
pac4j security library for Shiro: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 444 (+448.15%)
Mutual labels:  login, twitter, facebook
Shellphish
Phishing Tool for 18 social media: Instagram, Facebook, Snapchat, Github, Twitter, Yahoo, Protonmail, Spotify, Netflix, Linkedin, Wordpress, Origin, Steam, Microsoft, InstaFollowers, Gitlab, Pinterest
Stars: ✭ 1,037 (+1180.25%)
Mutual labels:  google, facebook, instagram
Ngx Auth Firebaseui
Angular Material UI component for firebase authentication
Stars: ✭ 518 (+539.51%)
Mutual labels:  google, twitter, facebook
Sns auth
通用第三方登录SDK,支持微信,微信扫码,QQ,微博登录,支付宝登录,Facebook,Line,Twitter,Google
Stars: ✭ 520 (+541.98%)
Mutual labels:  google, twitter, facebook

Social Login Helper For Android

Android Arsenal

A simple andorid library that helps you integrate social login into your apps. It supports Facebook, Google, Twitter. Lots more will be added later.

Supported Social Networks

  1. Google
  2. Facebook
  3. Twitter
  4. Instagram

How to integrate into your app?

Integrating the library into you app is extremely easy. A few changes in the build gradle and your all ready to use the library. Make the following changes.

Step 1. Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories:

allprojects {
  repositories {
    ...
    maven { url "https://jitpack.io" }
  }
}

Step 2. Add the dependency

dependencies {
    compile 'com.github.mukeshsolanki:social-login-helper:1.0.2'
}

How to use the library?

Okay seems like you integrated the library in your project but how do you use it? Well its really easy if you want to user facebook login just create a button and set an onClickLister to perform the following.

FacebookHelper facebookHelper=new FacebookHelper(new FacebookListener() {
  @Override public void onFbSignInFail(String errorMessage) {
    
  }

  @Override public void onFbSignInSuccess(String authToken, String userId) {
    //Save the token or do what every you want here
  }

  @Override public void onFBSignOut() {

  }
})

That's pretty much it you can do the same for other social network login's too and your all wrapped up.

Config

  1. For facebook login you will need to add the following to your android manifest
    <meta-data
        android:name="com.facebook.sdk.ApplicationId"
        android:value="@string/facebook_app_id" />
  1. For google you need to add google-services.json to your projects root directory

  2. For twitter you just need to pass it along with the helper.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].