So, I'm new to Twilio and have been trying to build a full VoIP app. I can make outbound calls, but I'm not sure how to get an incoming call to be answered with Twilio and talking to a real person. I've scrolled through what seems like most of their documentation and can't seem to figure this out, and there doesn't seem to be any tutorials out there to help either.
I have the basic incoming function that is provided:
function incoming() {
const voiceResponse = new VoiceResponse();
voiceResponse.say("Congratulations! You have received your first inbound call! Good bye.");
console.log('Response:' + voiceResponse.toString());
return voiceResponse.toString();
}
I know how to do call forwarding, but for this VoIP application that isn't really what I want. I am using the Twilio trial account still. I am trying to set this VoIP app up on iOS if that makes a difference.
Thank you so much in advance!