we are in early stage review of Twilio and have a bit of a snag. The examples show something like this
string accountSid = mySid;
string authToken = myToken;
TwilioClient.Init(accountSid, authToken);
var call = CallResource.Create(
from: new Twilio.Types.PhoneNumber("+4411112222"),
to: new Twilio.Types.PhoneNumber("+44999988888"),
twiml: new Twilio.Types.Twiml("<Response></Response>")
);
While I can get the call to "say" I cannot see how to:
- Get the originator to "hear" the call - does this need a softphone like Zoiper?
- How should the Twiml be constructed to allow the from to talk to the to?
There is loads of documents and I have looked at a lot - but its not gelling with me yet :(
Any guidance really appreciated !