Twilio Autopilot Python快速入门教程

时间:2019-06-30 20:40:08

标签: python twilio

我正在尝试遵循以下Twilio Autopilot教程https://www.twilio.com/docs/autopilot/quickstart/python?code-sample=code-create-your-first-assistant-with-autopilot-7&code-language=Python&code-sdk-version=6.x

我正在尝试使用自动驾驶仪以及自己的account_sid和auth_token创建我的第一个助手。

# Download the helper library from 
https://www.twilio.com/docs/python/install
from twilio.rest import Client

# Your Account Sid and Auth Token from twilio.com/console
# DANGER! This is insecure. See http://twil.io/secure
account_sid = 'ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
auth_token = 'your_auth_token'
client = Client(account_sid, auth_token)

assistant = client.autopilot \
              .assistants \
              .create(
                   friendly_name='Quickstart Assistant',
                   unique_name='quickstart-assistant'
               )

print(assistant.sid) 

但是,当我尝试执行脚本时收到以下错误。

enter image description here

1 个答案:

答案 0 :(得分:4)

这里是Twilio开发人员的传播者。

您是否偶然运行了此脚本一次? unique_name必须是唯一的,因此,如果您在不更改该值的情况下运行了两次脚本,则第二次尝试将失败。

我尝试运行您发布的代码示例(使用我自己的帐户凭据),该示例第一次运行,但第二次失败,并返回与您得到的相同的错误消息(35002)。将unique_name的值更改为quickstart-assistant-2,脚本再次成功运行。

如果您可以登录到Twilio,则应该可以看到list of autopilot assistants you have created,它会告诉您是否能够在第一次尝试中成功创建助手。

如果您还有其他疑问或问题,请与我联系。