我正在尝试创建 twilio 聊天机器人,
from flask import Flask,request
from twilio.twiml.messaging_response import MessagingResponse
app = Flask(__name__)
@app.route('/sms',methods=['POST'])
def sms():
from_number = request.form['From']
to_number = request.form['To']
body = request.form['Body']
resp = MessagingResponse()
resp.message("The Robots are coming! Head for the hills!")
return str(resp)
app.run()
我的帖子请求工作正常,因为我可以看到每个帖子请求有 200 个代码
这是我的 ngrok 终端。当我的请求进行时,我的响应消息没有反映在 twilio 沙箱中。我的 Whatsapp 没有任何回应。 当我尝试监视错误日志时,它显示如下,不知道为什么会发生这种情况。
WARNING - 12200
Schema validation warning
The provided XML does not conform to the Twilio Markup XML schema. Please refer to the specific error and correct the problem. ## Warning - 12200
我是新手,请有人帮助我,为什么它没有回复我的消息。
谢谢!