gpt4 book ai didi

python - twilio:从 None 提高 KeyError(key)

转载 作者:行者123 更新时间:2023-12-03 21:45:03 32 4
gpt4 key购买 nike

我正在尝试使用 twilio 发送消息,但出现以下错误。如何解决此错误?

import os
from twilio.rest import Client

account_sid = os.environ['testtest']
auth_token = os.environ['testtesttest']
client = Client(account_sid, auth_token)

message = client.messages \
.create(
body="Join Earth's mightiest heroes. Like Kevin Bacon.",
from_='+16813203595',
to='+12345678'
)

print(message.sid)
    raise KeyError(key) from None
KeyError: 'testtest'

最佳答案

轻松测试您的代码:一个简单的解决方法是先不使用环境变量,
将您的代码重构为:

from twilio.rest import Client

account_sid = 'testtest'
auth_token = 'testtesttest'
client = Client(account_sid, auth_token)

message = client.messages \
.create(
body="Join Earth's mightiest heroes. Like Kevin Bacon.",
from_='+16813203595',
to='+12345678'
)

print(message.sid)
一旦满意,然后考虑并从 twilio 得到响应,您可以切换到 env 变量

关于python - twilio:从 None 提高 KeyError(key),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64962165/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com