Giter VIP home page Giter VIP logo

brazephpsdk's Introduction

brazephpsdk

PHP SDK for Braze

Examples

Send a Push Message immediately:

$base_url = 'https://rest.iad-03.braze.com';
$api_key = 'some-api-key-123456789'

// Create new push object
$push_notification = new \Braze\Messaging\PushNotification($base_url, $api_key);
// add a Segment ID
$push_notification->getPayload()->set('segment_id', 'some-segment-id-12345');
// set Broadcast to TRUE
$push_notification->getPayload()->set('broadcast', TRUE);

// apple, android, windows_phone8, kindle_fire, windows_universal
$device_type = 'apple';
$type = $push_notification->getPayload()->getPushObject($device_type)->getType();
// grabs the device classname based on the device type
$classname = $push_notification->getPayload()->getPushObject($type)->objectMap($type);
// the device-specific class name, including namespace
$device_class = "Braze\\Messaging\\Devices\\$classname";

// create a device-specific push object
$push_notification->getPayload()->addPushObject($type, new $device_class($type));
// set push title.  Has a specific setter for title defined by interface
$push_notification->getPayload()->getPushObject($type)->setTitle('I am the title!');
// set push body.  Has a specific setter for body as defined by interface
$push_notification->getPayload()->getPushObject($type)->setBody('here is my body message');
// set badge. uses set method for adding other device-specific properties
$push_notification->getPayload()->getPushObject($type)->set('badge', 1);

// send the message
$push_notification->send();

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.