当用户访问在我的flask应用程序上运行的URL时,我希望Web服务能够处理问号后指定的参数:
http://10.1.1.1:5000/login?username=alex&password=pw1
#I just want to be able to manipulate the parameters
@app.route('/login', methods=['GET', 'POST'])
def login():
username = request.form['username']
print(username)
password = request.form['password']
print(password)
89
只是安全性的一个小提示:GET请求中不要包含密码。security.stackexchange.com/questions/147188/…–
—
palsch
另一个关于安全的小提示:不要将密码发送到HTTP端点(仅适用于HTTPS)
—
DerMike