防止记录消息体Twilio

时间:2015-10-26 19:38:32

标签: twilio

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

1 个答案:

答案 0 :(得分:0)

来自Twilio的梅根在这里。听起来这可能是redact的一个很好的用例。 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")

您可以查看其他语言的示例here in the docs