我试图弄清楚如何使用 CURL 启用或禁用插件...我在文档中找到以下内容...所以我可以使用 CURL 创建插件...但我无法更新值,我该如何更新现有插件
https://docs.konghq.com/hub/kong-inc/request-termination/
curl -X POST http://{HOST}:8001/plugins/ \
--data "name=request-termination" \
--data "config.status_code=403" \
--data "config.message=So long and thanks for all the fish!"
https://docs.konghq.com/gateway-oss/2.5.x/admin-api/
/services/{service name or id}/plugins/{plugin id}
当我尝试修补时,我得到 {"message":"not found"},这仅在我使用 /services/{service name or id}/plugins/{plugin id} 时发生
如果我通过 plugins/plugin_id 它工作正常...
但理想情况下,我喜欢通过服务端点