1. Go to this page and download the library: Download calcinai/xero-php 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/ */
calcinai / xero-php example snippets
session_start();
$provider = new \Calcinai\OAuth2\Client\Provider\Xero([
'clientId' => '{xero-client-id}',
'clientSecret' => '{xero-client-secret}',
'redirectUri' => 'https://example.com/callback-url',
]);
if (!isset($_GET['code'])) {
// If we don't have an authorization code then get one
// Additional scopes may be => 'openid email profile accounting.transactions'
]);
$_SESSION['oauth2state'] = $provider->getState();
header('Location: ' . $authUrl);
exit;
// Check given state against previously stored one to mitigate CSRF attack
} elseif (empty($_GET['state']) || ($_GET['state'] !== $_SESSION['oauth2state'])) {
unset($_SESSION['oauth2state']);
exit('Invalid state');
} else {
// Try to get an access token (using the authorization code grant)
$token = $provider->getAccessToken('authorization_code', [
'code' => $_GET['code']
]);
//If you added the openid/profile scopes you can access the authorizing user's identity.
$identity = $provider->getResourceOwner($token);
print_r($identity);
//Get the tenants that this user is authorized to access
$tenants = $provider->getTenants($token);
print_r($tenants);
}
// Configure the webhook signing key on the application
$application->setConfig(['webhook' => ['signing_key' => 'xyz123']]);
$webhook = new Webhook($application, $request->getContent());
/**
* @return int
*/
$webhook->getFirstEventSequence();
/**
* @return int
*/
$webhook->getLastEventSequence();
/**
* @return \XeroPHP\Webhook\Event[]
*/
$webhook->getEvents();
if (! $webhook->validate($request->headers->get('x-xero-signature'))) {
throw new Exception('This request did not come from Xero');
}
// use GuzzleHttp\Client;
// use GuzzleHttp\HandlerStack;
// use GuzzleHttp\Middleware;
// use GuzzleHttp\RetryMiddleware;
// use Psr\Http\Message\RequestInterface;
// use Psr\Http\Message\ResponseInterface;
public function yourApplicationCreationMethod($accessToken, $tenantId): Application {
// By default the contructor creates a Guzzle Client without any handlers. Pass a third argument 'false' to skip the general client constructor.
$xero = new Application($accessToken, $tenantId, false);
// Create a new handler stack
$stack = HandlerStack::create();
// Create the MiddleWare callable, in this case with a maximum limit of 5 retries.
$stack->push($this->getRetryMiddleware(5));
// Create a new Guzzle Client
$transport = new Client([
'headers' => [
'User-Agent' => sprintf(Application::USER_AGENT_STRING, Helpers::getPackageVersion()),
'Authorization' => sprintf('Bearer %s', $accessToken),
'Xero-tenant-id' => $tenantId,
],
'handler' => $stack
]);
// Replace the default Client from the application constructor with our new Client using the RetryMiddleware
$xero->setTransport($transport);
return $xero
}
/**
* Customise the RetryMiddeware to suit your needs. Perhaps creating log messages, or making decisions about when to retry or not.
*/
protected function getRetryMiddleware(int $maxRetries): callable
{
$decider = function (
int $retries,
RequestInterface $request,
ResponseInterface $response = null
) use (
$maxRetries
): bool {
return
$retries < $maxRetries
&& null !== $response
&& \XeroPHP\Remote\Response::STATUS_TOO_MANY_REQUESTS === $response->getStatusCode();
};
$delay = function (int $retries, ResponseInterface $response): int {
if (!$response->hasHeader('Retry-After')) {
return RetryMiddleware::exponentialDelay($retries);
}
$retryAfter = $response->getHeaderLine('Retry-After');
if (!is_numeric($retryAfter)) {
$retryAfter = (new \DateTime($retryAfter))->getTimestamp() - time();
}
return (int)$retryAfter * 1000;
};
return Middleware::retry($decider, $delay);
}