如果以后在购买twilio号码时未捕获到电话号码,是否有任何简便的方法可以在以后获得它。
购买号码时捕获电话号码sid很容易,但是我后来发现的解决方案似乎很复杂,并且使用了循环。
购买号码时捕获电话号码SID:
from twilio.rest import Client
account_sid = 'accountsid'
auth_token = 'your_auth_token'
client = Client(account_sid, auth_token)
# Purchase the phone number
number = client.incoming_phone_numbers \
.create(phone_number=number)
print(number.sid)
答案 0 :(得分:1)
您可以使用“完全匹配”进行过滤。
例如,如果您的电话号码是+17775553333
,请尝试使用以下代码获取sid
。
from twilio.rest import Client
account_sid = 'ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
auth_token = 'your_auth_token'
client = Client(account_sid, auth_token)
incoming_phone_numbers = client.incoming_phone_numbers.list(phone_number='+17775553333', limit=20)
for record in incoming_phone_numbers:
print(record.sid)