Twilio上的失败消息

2024-09-25 10:32:53 发布

您现在位置:Python中文网/ 问答频道 /正文

我使用flask和Twilio构建了一个whatapp聊天机器人,但当我检查控制台时,似乎收到了失败的消息。状态显示为失败,出现未知错误。当我检查我的调试器时,我看到错误消息

HTTP retrieval failure

在对flask应用程序做了一些更改后,我开始出现这些错误。我尝试撤消所有更改,但现在状态显示为失败,而不是作为状态接收。我试着重新启动我的ngrok并在我的Twilio上更改url,但这也没有改变任何事情

这是我的密码:

from flask import Flask, request
import requests
from twilio.twiml.messaging_response import MessagingResponse
import random
app = Flask(__name__)

@app.route('/bot', methods=['POST'])
def bot():
    incoming_msg = request.values.get('Body', '').lower()
    resp = MessagingResponse()
    msg = resp.message()
    responded = False
    if incoming_msg == 'help':
        #return options available
        output = 'This is a chatbot designed to send statistics, linear algebra and general programming problem questions. Please type in either "Python", "Statistics" or Linear Algebra" to get a random problem.'
        msg.body(output)
        responded = True
    if 'python' in incoming_msg:
        with open("C://Users//User//Downloads//python_test.txt", "r") as f:
            lines = f.readlines()
            code = random.choice(lines)
            msg.body(code)
            responded = True
    if 'quote' in incoming_msg:
        # return a quote
        r = requests.get('https://api.quotable.io/random')
        if r.status_code == 200:
            data = r.json()
            quote = f'{data["content"]} ({data["author"]})'
        else:
            quote = 'I could not retrieve a quote at this time, sorry.'
        msg.body(quote)
        responded = True
    if 'thegradientboost' in incoming_msg:
        message = 'Test \
                  '. Additional text' \
                  'More text,' \
                  'end of text.' \
                  'a bit more text' \
                  'conclusion.'
        msg.body(message)
        responded = True
    if not responded:
        msg.body('Word not included.')
    return str(resp)


if __name__ == '__main__':
    app.run(debug=True)

Tags: textinimporttrueappflaskif状态