添加 Basic Authentication 到一个 service
或 route
。 然后 consumer
将其用户名和密码添加到请求头中以验证其请求。
username
: 不同的consumer
对象应有不同的值,它应当是唯一的。不同 consumer 使用了相同的username
,将会出现请求匹配异常。password
: 用户的密码
你可以使用浏览器打开 dashboard:http://127.0.0.1:9080/apisix/dashboard/
,通过 web 界面来完成上面的操作,先增加一个 consumer:
2. 创建 Route 或 Service 对象,并开启 插件。
curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"methods": ["GET"],
"plugins": {
"basic-auth": {}
},
"upstream": {
"type": "roundrobin",
"nodes": {
"127.0.0.1:8080": 1
}
}'
- 缺少 Authorization header
$ curl -i -ubar:bar http://127.0.0.1:9080/hello
HTTP/1.1 401 Unauthorized
...
{"message":"Invalid user key in authorization"}
- 密码错误:
- 成功请求:
$ curl -i -ufoo:bar http://127.0.0.1:9080/hello
HTTP/1.1 200 OK
...
hello, foo!
...
当你想去掉 basic-auth
插件的时候,很简单,在插件的配置中把对应的 json
配置删除即可,无须重启服务,即刻生效: