const accountSid = 'account_sid';
const authToken = 'auth_token';
const client = require('twilio')(accountSid, authToken);
client.messages
.create({
to: '+94716220786',
from: '+13022519234',
body: 'Your verification code is ' + Math.floor(1000 + Math.random() *
9000)
})
.then(message => console.log(message.sid));
console.log('receive');
console.log(Math.floor(1000 + Math.random() * 9000));
Я пытаюсь отправить смс, используя twilio. Я установил последнюю версию twilio в свой угловой проект.
Но когда проект запускается, он говорит, что "Cannot read свойство isTTY of undefined"