Skip to content

defre13/breadbutter-java

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BreadButter Java

The official BreadButter Java Client library.

Download

Maven

<dependency>
    <groupId>io.breadbutter</groupId>
    <artifactId>breadbutter-java</artifactId>
    <version>3.1.0</version>
</dependency>

BreadButter API


Instantiating a new client

  • Your APP_ID can be found in App Settings
  • APP_SECRETS are configured here
  • The BREADBUTTER_API_ENDPOINT should be set to https://api.breadbutter.io

Create a new instance of BreadButterClient.

import io.breadbutter.BreadButterClient;

BreadButterClient client = new BreadButterClient("{APP_ID}", "{APP_SECRET}", "{BREADBUTTER_API_ENDPOINT}");

Authentication QuickStart

The StartAuthentication function in the JS library begins the BreadButter managed SSO process.

Further documentation on starting the login process via our JavaScript client can be found at our GitHub page here

The following example demonstrates what to do once the Callback Url has been used by our system to redirect the user back to your page:

import io.breadbutter.BreadButterClient;
import io.breadbutter.dtos.GetAuthenticationResponse;
import io.breadbutter.dtos.AuthenticationData;
import io.breadbutter.BreadButterException;

String callbackUrl = "{CallbackUrl}?authentication_token=507f191e810c19729de860ea";

String queryToken = client.parseAuthenticationToken(callbackUrl);

try {

    GetAuthenticationResponse response = client.getAuthentication(queryToken);
    
    if(response.isAuthSuccess()) {
        //authentication and validation succeeded. proceed with post-auth workflows for your system
        AuthenticationData authData = response.getAuthData();
        String emailAddress = authData.getEmailAddress();
        String firstName = authData.getFirstName();
        String lastName = authData.getLastName();
    }
} catch(BreadButterException ex) {
    System.out.println(ex.getMessage());
}

ParseAuthenticationToken

This method parses out the value of the token query parameter returned with your callback url.

import io.breadbutter.BreadButterClient;

String callbackUrl = "https://example.com?authentication_token=60219621548a2f1c23e51bdc";
String token = client.parseAuthenticationToken(callbackUrl);
System.out.println(token);

//output
//60219621548a2f1c23e51bdc

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%