如何获取我目前拥有的每个Twilio号码的转储?

时间:2017-03-31 18:46:19

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

我正试图找到一种方法来查看我在Twilio上购买的所有数字,并且仍然可以控制 - 无论是从控制台还是通过api调用。

1 个答案:

答案 0 :(得分:0)

Twilio开发者传道者在这里。

您可以看到所有your Twilio numbers in the console here

您还可以使用REST API获取数字。你需要Incoming Phone Numbers list resource。您可以使用Python和Twilio Python helper library执行此操作,例如:

from twilio.rest import Client

# Your Account Sid and Auth Token from twilio.com/user/account
account_sid = "your_account_sid"
auth_token = "your_auth_token"
client = Client(account_sid, auth_token)

# A list of number objects with the properties described above
for number in client.incoming_phone_numbers.stream():
    print(number.phone_number)

让我知道这是否有帮助。