Twilio authenticates webhooks by calculating a signature based on the webhook url and parameters. The parameters are sorted and all
Author: Yvonne Lu
Git Notes
if you want to create a new branch AND check it out at the same time, you can simply type
Twilio Task Router
Tasks are deleted 5 minutes after being completed or cancelled. If a Task traverses Workflow to the point that it
Twilio Flex Manager
Documentation: https://www.twilio.com/docs/flex/developer/ui/manager On Connect Flex.Manager.getInstance().voiceClient.on(‘connect’, () => { console.log(‘connect’); }); Action inside reservation Flex.Manager.getInstance().workerClient.on(“reservationCreated”, reservation => { if (reservation.task.taskChannelUniqueName ===
Twilio Flex Plugin
# create new plugin state-warning twilio flex:plugins:create plugin-state-warning –install To login to Flex, first login to Twilio console, select the
VS Code notes
To view Json: Shift+Alt+F will format the json document To set up debugger: Go to run view create launch.json. Edit
Laravel Job and Queue
To place job on the queue using tinker: use Illuminate\Contracts\Bus\Dispatcher; //for command app(Dispatcher::class)->dispatch($command); //for job app(Dispatcher::class)->dispatch(new App\Jobs\TestJob); //or $pending =
Twilo template for got interface
const got = require(‘got’); //Boilerplate for function code exports.handler = function(context, event, callback) { // Make an HTTP Request using
AWS DomumentDB
AWS DocumentDB (MongoDB Compatibility) walk through NOT an ec2 instance connect through VPC Connect Using Amazon EC2 Connecting to an
Laravel Model
To create a new model php artisan make:model model_name This will make a model file in App directory. As a