PHP code example of stakeholderlabs / roundtable-laravel
1. Go to this page and download the library: Download stakeholderlabs/roundtable-laravel library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
stakeholderlabs / roundtable-laravel example snippets
use Shl\RoundTable\Clients\Client as RoundtableClient;
$client = app(RoundtableClient::class);
if ($tokenUrl = $client->obtainTokenUrl('[email protected]', 'Joe Doe')) {
return Redirect::to($tokenUrl);
}
use Shl\RoundTable\Clients\Client as RoundtableClient;
$payload = request()->get('payload');
$client = app(RoundtableClient::class);
if($data = $client->decryptRoundtablePayload($payload)) {
// Save roundtable customer id to the database as the confirmation of connection to Roundtable™
// e.g. $user->update(['roundtable_id' => $data->getCustomerId()]);
}