Skip to content

Instantly share code, notes, and snippets.

View danehammer's full-sized avatar
🧘‍♂️

Dane Hammer danehammer

🧘‍♂️
View GitHub Profile
@danehammer
danehammer / TwilioDemoCallLambda.js
Last active September 11, 2016 22:58 — forked from stevebowman/AWSLambdaSimpleSMS.js
AWS Lambda Function to make demo phone call via the Twilio API
console.log('Loading event');
// Twilio Credentials
var accountSid = '';
var authToken = '';
var fromNumber = '+12345678910';
var https = require('https');
var queryString = require('querystring');