ps0*_*604 0 python flask python-3.x flask-restful
如何在 Flask 的装饰器函数中获取发送请求的客户端的 IP 地址和端口?
from flask import Flask, request, jsonify
from functools import wraps
app = Flask(__name__)
def check_auth(f):
@wraps(f)
def decorated_function(*args, **kwargs):
print(request)
### Here I need the IP address and port of the client
return f(*args, **kwargs)
return decorated_function
@app.route('/test', methods=['POST'])
@check_auth
def hello():
json = request.json
json['nm'] = 'new name2'
jsonStr = jsonify(json)
return jsonStr
Run Code Online (Sandbox Code Playgroud)
您可以使用 Flask 的request.environ()函数来获取客户端的远程端口和 IP 地址:
from flask import request
from functools import wraps
def check_auth(f):
@wraps(f)
def decorated_function(*args, **kwargs):
print(request)
### Here I need the IP address and port of the client
print("The client IP is: {}".format(request.environ['REMOTE_ADDR']))
print("The client port is: {}".format(request.environ['REMOTE_PORT']))
return f(*args, **kwargs)
return decorated_function
Run Code Online (Sandbox Code Playgroud)
装饰器打印如下内容:
The client IP is: 127.0.0.1
The client port is: 12345
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3280 次 |
| 最近记录: |