Giter Club home page Giter Club logo

breadbutter-php's Introduction

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).
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.