PHP SDK for OneSignal RESTful API
OneSignal is a high volume and reliable push notification service for websites and mobile applications. We support all major native and mobile platforms by providing dedicated SDKs for each platform, a RESTful server API, and an online dashboard for marketers to design and send push notifications., (*1)
System requirements
Installation
Using Composer
composer require namnv609/php-onesignal-sdk
or you can include the following in your composer.json
"namnv609/php-onesignal-sdk": "1.0"
, (*2)
{"status":true,"code":200,"response":<OneSignal result>}
$players = $player->all();
foreach ($players->response->players as $player) {
echo $player->id . PHP_EOL;
}
Usage Instructions
First, create a new OneSignal
instance to make configuring the library for usage., (*3)
use NNV\OneSignal\OneSignal;
$oneSignal = new OneSignal(<User Auth key> [, <App ID>, <App REST key>, <Extra options for GuzzleHttp Client>])
Once the OneSignal
instance has been registered. You may use it like so:, (*4)
Application body parameters: Create and Update, (*5)
use NNV\OneSignal\API\App;
$app = new App($oneSignal);
$app->all();
$app->get("<App ID>");
$appData = [
'name' => '<App name>',
'apns_env' => 'sandbox',
];
$app->create($appData);
$appData = [
'apns_env' => 'production',
];
$app->update("<App ID>", $appData);
Player (Device) body parameters: Create, Update, New session, New purchase, Increment session length and CSV export, (*6)
use NNV\OneSignal\API\Player;
$player = new Player($oneSignal [, <App ID>, <App REST key>]);
$player->all([<Limit>, <Offset>]);
$player->get("<Player ID>");
use NNV\OneSignal\Constants\DeviceTypes;
$playerData = [
'language' => 'en',
'tags' => [
'for' => 'bar',
'this' => 'that'
]
];
$player->create(DeviceTypes::CHROME_WEBSITE, $playerData);
use NNV\OneSignal\Constants\NotificationTypes;
use NNV\OneSignal\Constants\TestTypes;
$playerData = [
'test_type' => TestTypes::DEVELOPMENT,
'notification_types' => NotificationTypes::UNSUBSCRIBED
];
$player->update("<Player ID>", $playerData);
$sessionData = [
'tags' => [
'new' => 'session',
],
];
$player->onSession("<Player ID>", $sessionData);
- New purchase (Currently, i've support one item per request)
$purchaseData = [
'sku' => 'SKU123',
'iso' => 'USD',
'amount' => '0.99',
];
$player->onPurchase("<Player ID>", $purchaseData, [<Is existing>]);
$focusData = [
'state' => 'ping',
'active_time' => 1,
];
$player->onFocus("<App ID>", $focusData);
$extraFields = ['rooted'];
$player->csvExport($extraFields);
Notification body parameters: Create, (*7)
use NNV\OneSignal\API\Notification;
$notification = new Notification($oneSignal[, <App ID>, <App REST key>]);
$notificationData = [
'included_segments' => ['All'],
'contents' => [
'en' => 'Hello, world',
],
'headings' => [
'en' => 'Hello',
],
'buttons' => [
[
'id' => 'button_id',
'text' => 'Button text',
'icon' => 'button_icon',
],
],
'filters' => [
[
'field' => 'tag',
'key' => 'level',
'relation' => '>',
'value' => '10',
],
],
'send_after' => 'Sep 24 2017 14:00:00 GMT-0700',
'isChromeWeb' => true,
];
$notification->create($notificationData);
$notification->cancel("<Notification ID>");
$notification->get("<Notification ID>");
$notification->all([<Limit>, <Offset>]);
$notification->trackOpen("<Notification ID>");