当前,我使用Twilio Python API搜索可用的电话号码,然后过滤出与特定的Twilio电话号码功能不匹配的电话号码:
local = client.available_phone_numbers('US').local.list(
'limit': 50,
'area_code': '609'
)
records = []
for record in local:
if record.capabilities['voice'] == False:
continue
records.append(record)
这是效率低下的问题,原因有几个。我希望能够根据功能(语音,短信,彩信,传真)进行搜索,但无法在文档中找到方式,也无法通过浏览库文件来查找。
这可能吗?
答案 0 :(得分:0)
此处是Twilio开发人员的传播者。
用于根据功能搜索电话号码的参数为sms_enabled
,mms_enabled
和voice_enabled
。
local = client.available_phone_numbers('US').local.list(area_code='609', mms_enabled=True, limit=50)
for record in local:
print record.phone_number
希望这会有所帮助!