从twilio调用时URL无效错误

时间:2017-10-12 08:52:41

标签: twilio

我想创建一个可以在vb.net中使用Twilio调用其他人的应用程序。每当我传递URL参数时,它都会显示无效的URL错误。我已经提供了返回Twimil响应的服务。我将服务URL作为参数传递给Twilio URL以启动呼叫。

不确定是从vb.net打电话的正确方法

Twilio callvar to = new PhoneNumber("+917715*****"); 
var from = new PhoneNumber("+1*********"); 
var call = CallResource.Create(to, from, 
    url: new Uri("demo.twilio.com/docs/voice.xml")); 

service public class Service1 : IService1 
{ 
    public void GetDataJSONFormat() 
    { 
        var response = new VoiceResponse(); response.Say("Hello Shrikant");       
    } 
} 

0 个答案:

没有答案