Я пытаюсь вызвать мой nodejs API внутри функции Twilio, но он не работает. ниже мой код
var got = require('got');
var requestPayload = {foo: 'bar'};
got.post('https://your-api.com/endpoint',
{ body: JSON.stringify(requestPayload),
headers: {
'accept': 'application/json'
},
json: true
}).then(function(response) {
console.log(response.body)
callback(null, response.body);
}).catch(function(error) {
callback(error)
});