我可以知道如何禁用flask restplus端点吗?
我正在尝试执行某些操作,例如当条件不满足,端点被禁用且无法访问时。
是否可以在flask restplus中执行此操作,或者需要自定义代码?
我知道我们可以在swagger文档中禁用端点。但是,这不会禁用端点,因为可以通过curl访问其静止图像。 http://localhost:8080/api_endpoint/
答案 0 :(得分:0)
在Flask文档中查看add_url_rule
:
从Flask文档中,http://flask.pocoo.org/docs/1.0/api/
Internally route() invokes add_url_rule() so if you want to customize the behavior via subclassing you only need to change this method.
For more information refer to URL Route Registrations.