Set Up API Authentication
For security, you should only allow authenticated and authorized consumers to access your APIs. API7 Gateway provides several plugins to enable authentication and authorization.
Authentication plugins act as locks on your APIs, while consumer credentials serve as the keys to unlock them. Consumers are usually created after APIs are published. In API7 Gateway, you need a unique username and at least one credential to set up a consumer.
This guide walks you through enabling a simple key-based authentication using the key-auth
plugin.
Prerequisite(s)
Add a Consumer with Key Authentication
A consumer is an entity that consumes your APIs. This example will create a consumer named Alice
.
- Dashboard
- ADC
- Ingress Controller
- Select the gateway group where your service is published.
- Select Consumers from the side navigation bar.
- Click Add Consumer.
- From the dialog box, do the following:
- In the Name field, enter
Alice
. - Click Add.
- In the consumer you just created under the Plugins field, search for the
key-auth
plugin. - Click the Plus icon (+).
- In the dialog box do the following:
Add the following configuration to the JSON Editor:
{
"key": "secret-key"
}Click Enable.
To use ADC to create a consumer, create the following configuration:
consumers:
- username: Alice
plugins:
key-auth:
_meta:
disable: false
key: secret-key
Synchronize the configuration to API7 Gateway:
adc sync -f adc-consumer.yaml
Create a Kubernetes manifest file to configure a consumer using the ApisixConsumer custom resource:
apiVersion: apisix.apache.org/v2
kind: ApisixConsumer
metadata:
name: alice
# namespace: api7 # replace with your namespace
spec:
authParameter:
keyAuth:
value:
key: "secret-key"
Apply the configurations to your cluster:
kubectl apply -f consumer.yaml
Enable Key Authentication for APIs
For a Service
To use key authentication for all routes in a service, enable the key-auth
plugin on the service.
You cannot enable other authentication plugins on a route if you have enabled the key-auth
plugin on the service.
- Dashboard
- ADC
- Ingress Controller
- Select Published Services of your gateway group from the side navigation bar, then select the service you want to modify, for example,
httpbin
with version1.0.0
. - Select Plugins from the side navigation bar, then click Enable Plugin.
- Search for the
key-auth
plugin, then click Enable. - In the dialog box do the following:
Add the following configuration to the JSON Editor:
{
}Click Enable.
Update the service configuration to use key authentication:
services:
- name: httpbin
upstream:
name: default
scheme: http
nodes:
- host: httpbin.org
port: 80
weight: 100
plugins:
key-auth:
_meta:
disable: false
routes:
- uris:
- /ip
name: get-ip
methods:
- GET
Synchronize the configuration to API7 Enterprise:
adc sync -f adc-consumer.yaml -f adc-service.yaml
ADC uses the configuration files as the single source of truth. So make sure to pass both the consumer and service configuration files to the adc sync
command for both configurations to take effect.
ApisixService custom resource is not yet available.
For a Single Route
- Dashboard
- ADC
- Ingress Controller
To use key authentication for a specific route, enable the key-auth
plugin on the route instead of the service.
- Select Published Services of your gateway group from the side navigation bar, then select the service you want to modify, for example,
httpbin
with version1.0.0
. - Under the published service, select Routes from the side navigation bar.
- Select your target route, for example,
get-ip
. - In the Plugin field, click Enable Plugin.
- Search for the
key-auth
plugin, then click Enable. - In the dialog box do the following:
Add the following configuration to the JSON Editor:
{
}Click Enable.
Update the route configuration to use key authentication:
services:
- name: httpbin
upstream:
name: default
scheme: http
nodes:
- host: httpbin.org
port: 80
weight: 100
routes:
- uris:
- /ip
name: get-ip
methods:
- GET
plugins:
key-auth:
_meta:
disable: false
Synchronize the configuration to API7 Gateway:
adc sync -f adc-consumer.yaml -f adc-route.yaml
ADC uses the configuration files as the single source of truth. So make sure to pass both the consumer and service configuration files to the adc sync
command for both configurations to take effect.
Create a Kubernetes manifest file for a route, where key authentication is enabled:
apiVersion: apisix.apache.org/v2
kind: ApisixRoute
metadata:
name: get-ip
# namespace: api7 # replace with your namespace
spec:
http:
- name: get-ip
match:
paths:
- /ip
methods:
- GET
backends:
- serviceName: httpbin
servicePort: 80
authentication:
enable: true
type: keyAuth
Apply the configurations to your cluster:
kubectl apply -f httpbin-route.yaml
Validate
Follow the steps below to validate the key authentication.
Send a Request without a Key
Send a request without the apikey
header:
curl -i "http://127.0.0.1:9080/ip"
Since the key is not provided, you will receive an HTTP/1.1 401 Unauthorized
response with the following request body:
{"message":"Missing API key found in request"}
Send a Request with a Wrong Key
Send a request with a wrong key in the apikey
header:
curl -i "http://127.0.0.1:9080/ip" -H "apikey: wrongkey"
Since the key is wrong, you will receive an HTTP/1.1 401 Unauthorized
response with the following request body:
{"message":"Invalid API key in request"}
Send a Request with the Correct Key
Send a request with the correct key in the apikey
header:
curl -i "http://127.0.0.1:9080/ip" -H "apikey: secret-key"
With the correct key in the request, you will receive an HTTP/1.1 200 OK
response with the following request body:
{
"origin": "192.168.0.102, 35.259.159.12"
}
Additional Resource(s)
- Key Concepts
- API Consumption