muhammadbilal19 / auth0-java

Java client library for the Auth0 platform

Home Page:https://auth0.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Auth0 Java

Build MIT Maven JCenter

Java client library for the Auth0 platform.

Download

Get Auth0 Java via Maven:

<dependency>
  <groupId>com.auth0</groupId>
  <artifactId>auth0</artifactId>
  <version>0.4.0</version>
</dependency>

or Gradle:

compile 'com.auth0:auth0:0.4.0'

Usage

First with your Auth0 account information

Auth0 auth0 = new Auth0("{YOUR_CLIENT_ID}", "{YOUR_DOMAIN}");

and then ask Auth0 object for the Authentication API Client

AuthenticationAPIClient client = auth0.newAuthenticationAPIClient();

Currently we only have a Authentication API Client, in future version we'll start adding Management API Client and methods.

Android

You need to add the following to your build.gradle file:

android {

    // Other config of your application
    
    packagingOptions {
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE'
    }
}

Authentication API

Making a request

Asynchronously

Auth0 auth0 = new Auth0("{YOUR_CLIENT_ID}", "{YOUR_DOMAIN}");
AuthenticationAPIClient client = auth0.newAuthenticationAPIClient();

client.login("{username or email}", "{password}")
        .setConnection("{database connection name}")
        .start(new BaseCallback<Credentials>() {
            Override
            public void onSuccess(Credentials payload) { }
        
            Override
            public void onFailure(Auth0Exception error) { }
        });

Synchronously

Auth0 auth0 = new Auth0("{YOUR_CLIENT_ID}", "{YOUR_DOMAIN}");
AuthenticationAPIClient client = auth0.newAuthenticationAPIClient();

Credentials credentials = client.login("{username or email}", "{password}")
                                    .setConnection("{database connection name}")
                                    .execute();

Documentation

For more information about auth0 check our documentation page.

What is Auth0?

Auth0 helps you to:

  • Add authentication with multiple authentication sources, either social like Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, amont others, or enterprise identity systems like Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider.
  • Add authentication through more traditional username/password databases.
  • Add support for linking different user accounts with the same user.
  • Support for generating signed Json Web Tokens to call your APIs and flow the user identity securely.
  • Analytics of how, when and where users are logging in.
  • Pull data from other sources and add it to the user profile, through JavaScript rules.

Create a free Auth0 Account

  1. Go to Auth0 and click Sign Up.
  2. Use Google, GitHub or Microsoft Account to login.

Issue Reporting

If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.

Author

Auth0

License

This project is licensed under the MIT license. See the LICENSE file for more info.

About

Java client library for the Auth0 platform

https://auth0.com

License:MIT License


Languages

Language:Java 100.0%