Package Data | |
---|---|
Maintainer Username: | Dreamonkey |
Maintainer Contact: | p.caleffi@dreamonkey.com (Paolo Caleffi) |
Package Create Date: | 2017-11-30 |
Package Last Update: | 2024-08-08 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:11:29 |
Package Statistics | |
---|---|
Total Downloads: | 59,208 |
Monthly Downloads: | 392 |
Daily Downloads: | 27 |
Total Stars: | 6 |
Total Watchers: | 2 |
Total Forks: | 8 |
Total Open Issues: | 0 |
This project is a Laravel 5 / Lumen wrapper for the OneSignal REST API v1. It supports all operations currently supported by the API.
Require the package with composer.
composer require dreamonkey/laravel-onesignal-rest-api
From Laravel 5.5 onwards, it's possible to take advantage of auto-discovery of the service provider.
For Laravel versions before 5.5, you must register the service provider in your config/app.php
Update config/app.php
by adding the following entries.
'providers' => [
// ...
Dreamonkey\OneSignal\OneSignalServiceProvider::class,
];
'aliases' => [
// ...
'OneSignal' => Dreamonkey\OneSignal\Facades\OneSignal::class,
];
Update bootstrap/app.php
, adding the following entry
$app->register( \Dreamonkey\OneSignal\OneSignalServiceProvider::class );
class_alias( 'Dreamonkey\OneSignal\OneSignalFacade', 'OneSignal' );
There are three values that need to be set in order to use the library: your default OneSignal app ID, the REST API key and your account User Auth Key. All of these items can be found in your Control Panel on the OneSignal site. First two are app-related and can be found inside your app settings in the "Keys & IDs" tab (upper left corner), the third is account-related and can be found pressing your account avatar (lower right corner) and selecting "Account & API Keys".
Place the 3 keys into your .env file, as such:
ONESIGNAL_APP_ID=
ONESIGNAL_REST_API_KEY=
ONESIGNAL_USER_AUTH_KEY=
There is a function for each of the OneSignal API calls. They are broken down here. All methods will return an array formatted like this:
[
'status' => < HTTP status code of the request >,
'data' => [
< data returned by OneSignal REST API in array format >
],
]
Note: In all instances where an $app_id is asked for, omitting it will grab the default OneSignal App ID specified in the .env file
$response = OneSignal::getApps();
$response = OneSignal::postNotification([
"tags" => [ ["key" => "myKey", "relation" => "=", "value" => 1 ] ],
"contents" => ["en" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean et iaculis enim. Sed egestas porttitor laoreet."],
"headings" => ["en" => "Aliquam consectetur odio sed"],
]);
The official OneSignal API documentation is listed here: https://documentation.onesignal.com/docs/server-api-overview
This project has been forked and evolved by Dreamonkey from https://github.com/jmrieger/onesignal-laravel