You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
291 B
7 lines
291 B
3 years ago
|
//Configuration for running tests and examples against the Twilio API
|
||
|
module.exports = {
|
||
|
accountSid:'ACXXX',
|
||
|
authToken:'XXX',
|
||
|
from:'+16512223333', //The Twilio number you've bought or configured
|
||
|
to:'+16513334444' //The number you would like to send messages to for testing
|
||
|
};
|