key-auth 是一个认证插件,它需要与 consumer 一起配合才能工作。
添加 Key Authentication 到一个 service 或 route。 然后,consumer 将其密钥添加到查询字符串参数或标头中以验证其请求。
key: 不同的consumer对象应有不同的值,它应当是唯一的。不同 consumer 使用了相同的key,将会出现请求匹配异常。
- 创建一个 consumer 对象,并设置插件
key-auth的值。
curl http://127.0.0.1:9080/apisix/admin/consumers -X PUT -d '
{
"username": "jack",
"plugins": {
"key-auth": {
"key": "auth-one"
}
}
}'- 创建 route 或 service 对象,并开启
key-auth插件。
curl http://127.0.0.1:9080/apisix/admin/routes/1 -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 验证的请求:
$ curl http://127.0.0.2:9080/index.html -H 'apikey: keykey' -i
HTTP/1.1 200 OK
...如果当前请求没有正确设置 apikey ,将得到一个 401 的应答。
$ curl http://127.0.0.2:9080/index.html -i
HTTP/1.1 401 Unauthorized
...
{"message":"Missing API key found in request"}
$ curl http://127.0.0.2:9080/index.html -H 'apikey: abcabcabc' -i
HTTP/1.1 401 Unauthorized
...
{"message":"Invalid API key in request"}当你想去掉 key-auth 插件的时候,很简单,在插件的配置中把对应的 json 配置删除即可,无须重启服务,即刻生效:
$ curl http://127.0.0.1:2379/v2/keys/apisix/routes/1 -X PUT -d value='
{
"methods": ["GET"],
"uri": "/index.html",
"id": 1,
"plugins": {
},
"upstream": {
"type": "roundrobin",
"nodes": {
"39.97.63.215:80": 1
}
}
}'现在就已经移除了该插件配置,其他插件的开启和移除也是同样的方法。