我正在尝试读取twilio消息的消息正文。我可以阅读 message.to 和 message.from _ ,但是我似乎无法弄清楚得到身体。下面是我的代码。我特意删除了我的凭据。
# 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 = "AC#############################"
auth_token = "1##########################3"
client = Client(account_sid, auth_token)
# Get Message
message = client.messages('SM17ded763ce04f2cbbd343a39a243df').fetch()
print(message.to)
print(message.from_)
答案 0 :(得分:1)
这里是Twilio开发人员的传播者。
您可以通过以下方式获取消息正文
message.body
。
让我知道这是否有帮助! <3
答案 1 :(得分:0)
print(message.body)不起作用吗?