Example #1
0
$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");
?>