我跟随this guide (Python Quickstart: Replying to SMS and MMS Messages)尝试设置了一个烧瓶服务器,但是当我尝试连接http://localhost:5000
时出现404错误。我可以ping 127.0.0.1没问题。
代码:
from flask import Flask, request, redirect
import twilio.twiml
app = Flask(__name__)
@app.route("/", methods=['GET', 'POST'])
def hello_monkey():
"""Respond to incoming calls with a simple text message."""
resp = twilio.twiml.Response()
resp.message("Hello, Mobile Monkey")
return str(resp)
if __name__ == "__main__":
app.run(debug=True)
控制台输出:
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
* Restarting with windowsapi reloader
答案 0 :(得分:0)
重新启动计算机后,我可以连接到for
。不确定是什么导致了这个问题。