使用Django App中的twimlet进行呼叫转移

时间:2017-08-10 07:10:24

标签: django twilio twilio-click-to-call

我正在我的Django应用程序中实现Twilio呼叫功能,其中我想要拨打指定号码,在一个人接听电话后,它应该将呼叫连接到另一个电话号码。 这是我已经实现的以使呼叫功能运行但我无法将其转发到所需的号码。

def call(country_code, to, lead_cc, lead_no, configuration):
account_sid = "XXX22a62f54bXXXXXXXXXXXXX"
auth_token = "XXXXXa61188eXXXXXXXXXXX"
client = Client(account_sid, auth_token)
no_str = str(country_code) + str(to[0])
no_uni = unicode(no_str)
lead_str = str(lead_cc) + str(lead_no[0])
lead_uni = unicode(lead_str)

client.calls.create(from_="+17xxXXXXX",
                               to=no_uni,
                               url= 'http://twimlets.com/forward?PhoneNumber=+91xxxxxxxxx')

此外,我需要像这样在网址中传递“lead_uni”,但它现在正在运行(url ='http://twimlets.com/forward?PhoneNumber=lead_uni')。请提示!

1 个答案:

答案 0 :(得分:0)

有效!我正在使用Twilio试用帐户,所以我需要验证所有未使用的手机。 但是在twimlets URL中传递变量'lead_uni'仍然没有到位。