1 Star 0 Fork 468

量子风暴/go-fastdfs

forked from sjqzhang/go-fastdfs 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
auth.py 384 Bytes
一键复制 编辑 原始数据 按行查看 历史
sjqzhang 提交于 2024-12-26 22:48 . fix auth #451
from flask import Flask,request
app = Flask(__name__)
@app.route('/',methods=["GET", "POST"])
def index():
print(request.headers)
auth_token = request.headers.get("auth_token") # check auth_token here
print(auth_token)
if auth_token=='abc':
return 'ok' #success
else:
return 'fail'
if __name__ == '__main__':
app.run(host='0.0.0.0',debug=True)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/wuchunfu/go-fastdfs.git
[email protected]:wuchunfu/go-fastdfs.git
wuchunfu
go-fastdfs
go-fastdfs
master

搜索帮助