key-auth
名字
添加 Key Authentication 到一个 service
或 route
。 然后,consumer
将其密钥添加到查询字符串参数或标头中以验证其请求。
consumer 端配置:
名称 | 类型 | 必选项 | 默认值 | 有效值 | 描述 |
---|---|---|---|---|---|
header | string | 可选 | apikey | 设置我们从哪个 header 获取 key。 | |
query | string | 可选 | apikey | 设置我们从哪个 querystring 获取 key,优先级低于header |
如何启用
- 创建一个 consumer 对象,并设置插件
key-auth
的值。
你也可以通过 web 界面来完成上面的操作,先增加一个 consumer:
然后在 consumer 页面中添加 key-auth 插件:
- 创建 route 或 service 对象,并开启
key-auth
插件。
curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '{ "methods": ["GET"], "uri": "/index.html", "id": 1, "plugins": { "key-auth": {} }, "upstream": { "type": "roundrobin", "nodes": { "39.97.63.215:80": 1 } }}'
下面是一个正常通过 key-auth
验证的请求:
如果当前请求没有正确设置 apikey
,将得到一个 401
的应答。
禁用插件
$ curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '{ "methods": ["GET"], "uri": "/index.html", "id": 1, "plugins": { }, "upstream": { "type": "roundrobin", "nodes": { "39.97.63.215:80": 1 } }}'
现在就已经移除了该插件配置,其他插件的开启和移除也是同样的方法。