我正在使用python Twilio API。
给定子帐户sid,是否有办法获取该子帐户的现有api密钥。仅使用主api凭证,而不使用子帐户凭证。
我已尝试列出所有子帐户并列出所有api密钥,但我无法获取指定子帐户的API密钥。
答案 0 :(得分:0)
Twilio开发者传道者在这里。
您可以先获取子帐户本身,然后再获取该帐户的resources for a subaccount来获取fetching the API keys。
要在Python中执行此操作,它将如下所示:
# Download the Python helper library from twilio.com/docs/python/install
from twilio.rest import Client
# Your Account Sid and Auth Token from twilio.com/user/account
account_sid = "YOUR_ACCOUNT_TOKEN"
auth_token = "YOUR_AUTH_TOKEN"
client = Client(account_sid, auth_token)
subaccount = client.api.accounts("SUBACCOUNT_SID")
keys = subaccount.keys.list()
让我知道这是否有帮助。