Exemplo n.º 1
0
function sendmessage($message)
{
    $pb = new PushBots();
    // Application ID
    $appSecret = '01051c0a6ff7ce415584f3718c9c4cc7';
    // Application Secret
    $appID = '56a886bc177959da488b4567';
    $pb->App($appID, $appSecret);
    $customfields = array("PushBots" => "true");
    $pb->Payload($customfields);
    // Notification Settings
    $pb->Alert($message);
    $pb->Platform(array("0", "1"));
    $pb->Badge("+2");
    $pb->AliasData(1, "APA91bFpQyCCczXC6hz4RTxxxxx", "test");
    // set Alias on the server
    $pb->setAlias();
    // Push it !
    $pb->Push();
    return null;
}
Exemplo n.º 2
0
$appID = '518d187xx';
// Application Secret
$appSecret = '25e8507956b62d81xxx';
$pb->App($appID, $appSecret);
// Notification Settings
$pb->Alert("test Mesage");
$pb->Platform(array("0", "1"));
$pb->Badge("+2");
// Update Alias
/**
 * set Alias Data
 * @param	integer	$platform 0=> iOS or 1=> Android.
 * @param	String	$token Device Registration ID.
 * @param	String	$alias New Alias.
 */
$pb->AliasData(1, "APA91bFpQyCCczXC6hz4RTxxxxx", "test");
// set Alias on the server
$pb->setAlias();
// Push it !
$pb->Push();
// Push to Single Device
// Notification Settings
$pb->AlertOne("test Mesage");
$pb->PlatformOne("0");
$pb->TokenOne("3dfc8119fedeb90d1b8a9xxxxxx");
//Push to Single Device
$pb->PushOne();
//Remove device by Alias
$pb->removeByAlias("myalias");
?>