Skip to content

klosam/breadbutter-php

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Bread Butter PHP

The official BreadButter PHP library.

Bread Butter API



Instantiating a new client

  • APP_ID can be found in App Settings
  • APP_SECRET is configured at App Secrets
  • BreadButter_API_ENDPOINT should be set to https://api.breadbutter.io

Create a new instance of BreadButterClient.

<?php
use BreadButter\API\BreadButterClient as BreadButterClient;
$breadButterClient = new BreadButterClient(array(
    'app_id' => '{APP_ID}',
    'app_secret' => '{APP_SECRET}',
    'api_path' => '{BreadButter_API_ENDPOINT}',
));

Login QuickStart

The StartAuthentication function in the JS library begins the Bread Butter managed login 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:

<?php
$token = $_REQUEST['token'];
$loginData = $breadButterClient->getAuthentication($token);
if ($loginData['auth_success']) {
     //authentication and validation succeeded. proceed with post-auth workflows (ie, create a user session token for your system).
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%