Created
June 3, 2019 21:28
Star
You must be signed in to star a gist
Reminder app sample code (phone call)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const accountSid = process.env.TWILIO_SID; | |
| const authToken = process.env.TWILIO_TOKEN; | |
| const client = require('twilio')(accountSid, authToken); | |
| module.exports = async function (context, myTimer) { | |
| var timeStamp = new Date().toISOString(); | |
| if (myTimer.IsPastDue) | |
| { | |
| context.log('JavaScript is running late!'); | |
| } | |
| context.log('JavaScript timer trigger function ran!', timeStamp); | |
| client.calls | |
| .create({ | |
| url: process.env.TWIML_URL, | |
| to: process.env.RECIPIENT_NUMBER, | |
| from: process.env.SENDER_NUMBER, | |
| }) | |
| .then(call => { | |
| context.log("Call sent"); | |
| context.res = { | |
| // status: 200, /* Defaults to 200 */ | |
| body: 'Call successfully sent' | |
| }; | |
| context.done(); | |
| }).catch(err => { | |
| context.log.error("Twilio Error: " + err.message + " -- " + err.code); | |
| context.res = { | |
| status: 500, | |
| body: `Twilio Error Message: ${err.message}\nTwilio Error code: ${err.code}` | |
| }; | |
| context.done(); | |
| }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment