jobstreet/js-push-notification

There is no license information available for the latest version (1.0.1) of this package.

JS Push Notification SDK

1.0.1 2015-06-30 07:58 UTC

This package is not auto-updated.

Last update: 2024-04-20 14:45:47 UTC


README

JobStreet.com Push Notification Service

##Installation

Using Composer:

composer require jobstreet/js-push-notification 1.0.0

##Usage

This is the minimal example that you'll need to have:

require_once 'vendor/autoload.php';

$client = new JSPNClient(array(
    'applicationId' => 'YOUR_APPLICATION_ID',
    'isSandbox'     => true
));

$response = $client->publishMessage(12345, 'This is the notification message', array(
    'customParameter1' => 'parameter'
), array(
    'notificationOptions' => 'options'
));

if($response == 1) {
    echo 'Successfully publish message';
}
else {
    echo 'Failed to publish message. Error message ' . $response->error->message;
}

##Configuration File You may want to create a client config file in other place. Here is the example of defining the config file:

define('JSPN_CONFIG_PATH', 'path/to/config.php');

require_once 'vendor/autoload.php';

$client = new JSPNClient();

config.php


return array(
    'applicationId' => 'YOUR_APPLICATION_ID',
    'isSandbox'     => true
);

##Documentation

More information and example are available at JSPushNotification SDK Wiki