This is the official PHP SDK for journy.io.
You can use composer to install the SDK:
composer require journy-io/sdk
You will also need a PSR-7 implementation (HTTP messages), PSR-17 implementation (HTTP factory) and PSR-18 implementation (HTTP client).
If your app doesn't have these yet installed, we recommend:
composer require kriswallsmith/buzz nyholm/psr7
To be able to use the SDK you need to generate an API key. If you don't have one you can create one in journy.io.
If you don't have an account yet, you can create one in journy.io or request a demo first.
Go to your settings, under the Connections-tab, to create and edit API keys. Make sure to give the correct permissions to the API Key.
use JournyIO\SDK\Client;
// composer require kriswallsmith/buzz nyholm/psr7
$client = Client::withDefaults("your-api-key");
If you want to use your own HTTP client (PSR-18):
use Buzz\Client\Curl;
use JournyIO\SDK\Client;
use Nyholm\Psr7\Factory\Psr17Factory;
// https://github.com/Nyholm/psr7
$factory = new Psr17Factory();
// https://github.com/kriswallsmith/Buzz
$http = new Curl($factory, ["timeout" => 5]);
$client = new Client($http, $factory, $factory, ["apiKey" => "your-api-key"]);
use JournyIO\SDK\ApiKeyDetails;
$call = $client->getApiKeyDetails();
if ($call->succeeded()) {
$result = $call->result();
if ($result instanceof ApiKeyDetails) {
var_dump($result->getPermissions()); // string[]
}
} else {
var_dump($call->errors());
}
Every call will return a result, we don't throw errors when a call fails. We don't want to break your application when things go wrong. An exception will be thrown for required arguments that are empty or missing.
$call = $client->getTrackingSnippet("blog.acme.com");
var_dump($call->succeeded()); // bool
var_dump($call->rateLimited()); // bool
var_dump($call->remainingRequests()); // int
var_dump($call->maxRequests()); // int
var_dump($call->errors()); // array
To run the tests:
composer run test
We welcome your feedback, ideas and suggestions. We really want to make your life easier, so if weβre falling short or should be doing something different, we want to hear about it.
Please create an issue or contact us via the chat on our website.
If you discover any security related issues, please email security at journy io instead of using the issue tracker.