Twilio 防止记录消息正文信息

Twilio 防止记录消息正文信息,twilio,Twilio,我已经禁用了Request Inspector,但仍然可以在日志中看到消息体。我还需要做些什么来防止邮件正文被记录?这里是Twilio的Megan。听起来这可能是编校的一个很好的用例。Python中的一个示例: from twilio.rest import TwilioRestClient # Your Account Sid and Auth Token from twilio.com/user/account account_sid = "YOUR_ACCOUNT_SID" auth_t

我已经禁用了Request Inspector,但仍然可以在日志中看到消息体。我还需要做些什么来防止邮件正文被记录?

这里是Twilio的Megan。听起来这可能是
编校
的一个很好的用例。Python中的一个示例:

from twilio.rest import TwilioRestClient

# Your Account Sid and Auth Token from twilio.com/user/account
account_sid = "YOUR_ACCOUNT_SID"
auth_token  = "{{ auth_token }}"
client = TwilioRestClient(account_sid, auth_token)

client.messages.redact("MM800f449d0399ed014aae2bcc0cc2f2ec")
您可以看到其他语言的示例