LoopBack connector for Twilio & SendGrid
npm install loopback-connector-twilioBy default, examples from this module assumes the user has a Twillio account. To run the example you will need to provide your accountSid and authToken.
The connector support the following aspects of the Twilio REST API:
- Making Calls
- Sending Messages
In your LoopBack project:
$ npm install --save loopback-connector-twilio
datasources.json file:model-config.json file: "Twilio": {
"dataSource": "twilio",
"public": true
}
Now, using the created model, you can send an SMS or make a call using the send method of the model:
Twilio.send(options, callback);
Note: options is defined by the JSON objects in the next two sections:
/example/example.js directory, you must set the following values in the file: var SID = 'YOUR_TWILIO_ACCOUNT_SID';
var TOKEN = 'YOUR_TWILIO_ACCOUNT_TOKEN';
var SGAPIKEY = 'YOUR_TWILIO_SENDGRIO_API_KEY';
var TO = 'YOUR_TWILIO_TELEPHONE_NUMBER';
var FROM = 'TARGET_PHONE_NUMBER';
Next, from the from the /loopback-connector-twilio/ directory, install the loopback module using the following command:
$ npm install loopback
Finally, run the example app using the following command from the /loopback-connector-twilio/ directory:
$ node ./example/example.js
NOTE: The url property points to an XML file that specifies a TwiMIL command.
License
----
MIT