我正在尝试遵循以下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)


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

python - Twilio Autopilot Python快速入门教程-LMLPHP

最佳答案

Twilio开发人员布道者在这里。

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

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

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

如果您还有其他疑问或问题,请告诉我。

10-08 19:58