AndroidOAuth

Additional

Language
Java
Version
1.1.5 (Oct 14, 2016)
Created
Jun 30, 2016
Updated
Oct 14, 2016 (Retired)
Owner
Adriel Café (adrielcafe)
Contributor
Adriel Café (adrielcafe)
1
Activity
Badge
Generate
Download
Source code

A simple way to authenticate with Google and Facebook using OAuth 2.0 in Android

How To Use

Google

Login

// Use a Web credential instead of Android credential
GoogleOAuth.login(this)
    .setClientId(Credentials.GOOGLE_CLIENT_ID)
    .setClientSecret(Credentials.GOOGLE_CLIENT_SECRET)
    .setAdditionalScopes("https://www.googleapis.com/auth/plus.login https://www.googleapis.com/auth/user.birthday.read")
    .setRedirectUri(Credentials.GOOGLE_REDIRECT_URI)
    .setCallback(new OnLoginCallback() {
        @Override
        public void onSuccess(String token, SocialUser user) {
            Log.d("Google Token", token);
            Log.d("Google User", user+"");
        }
        @Override
        public void onError(Exception error) {
            error.printStackTrace();
        }
    })
    .init();

Logout (revoke token)

GoogleOAuth.logout(this)
    .setToken(currentToken)
    .setCallback(new OnLogoutCallback() {
        @Override
        public void onSuccess() {
            
        }
        @Override
        public void onError(Exception error) {
            
        }
    })
    .init();

Facebook

Login

// No need to configure Android section on Facebook app
FacebookOAuth.login(this)
    .setClientId(Credentials.FACEBOOK_APP_ID)
    .setClientSecret(Credentials.FACEBOOK_APP_SECRET)
    .setAdditionalScopes("user_friends user_birthday")
    .setRedirectUri(Credentials.FACEBOOK_REDIRECT_URI)
    .setCallback(new OnLoginCallback() {
        @Override
        public void onSuccess(String token, SocialUser user) {
            Log.d("Facebook Token", token);
            Log.d("Facebook User", user+"");
        }
        @Override
        public void onError(Exception error) {
            error.printStackTrace();
        }
    })
    .init();

Logout (revoke token)

FacebookOAuth.logout(this)
    .setToken(currentToken)
    .setCallback(new OnLogoutCallback() {
        @Override
        public void onSuccess() {
            
        }
        @Override
        public void onError(Exception error) {
            
        }
    })
    .init();

Import to your project

Put this into your app/build.gradle:

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

dependencies {
  compile 'com.github.adrielcafe:AndroidOAuth:1.1.5'
}

TODO

  • Twitter support
  • Get name, email, profileUrl, coverUrl and birthday from authenticated user
  • logout() method to revoke token
  • setAdditionalScopes() method to add more scopes from Google and Facebook

Dependencies

License

The MIT License (MIT)

Copyright (c) 2016 Adriel Café

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.