Can I retrieve my client’s secret again?
No, the secret is only shared once when the client is created. Store it securely.
Create a Kong Identity auth server, scope, claim, and client. Use the Base64-encoded client ID and client secret for config.authorization_value
in the OAuth 2.0 Introspection plugin configuration as well as your auth server introspection endpoint. Generate a client token by sending a POST request to $ISSUER_URL/oauth/token
and use the access token in a header when you send a request to a protected Gateway Service.
This is a Konnect tutorial and requires a Konnect personal access token.
Create a new personal access token by opening the Konnect PAT page and selecting Generate Token.
Export your token to an environment variable:
export KONNECT_TOKEN='YOUR_KONNECT_PAT'
Run the quickstart script to automatically provision a Control Plane and Data Plane, and configure your environment:
curl -Ls https://get.konghq.com/quickstart | bash -s -- -k $KONNECT_TOKEN --deck-output
This sets up a Konnect Control Plane named quickstart
, provisions a local Data Plane, and prints out the following environment variable exports:
export DECK_KONNECT_TOKEN=$KONNECT_TOKEN
export DECK_KONNECT_CONTROL_PLANE_NAME=quickstart
export KONNECT_CONTROL_PLANE_URL=https://us.api.konghq.com
export KONNECT_PROXY_URL='http://localhost:8000'
Copy and paste these into your terminal to configure your session.
This tutorial requires Kong Gateway Enterprise. If you don’t have Kong Gateway set up yet, you can use the quickstart script with an enterprise license to get an instance of Kong Gateway running almost instantly.
Export your license to an environment variable:
export KONG_LICENSE_DATA='LICENSE-CONTENTS-GO-HERE'
Run the quickstart script:
curl -Ls https://get.konghq.com/quickstart | bash -s -- -e KONG_LICENSE_DATA
Once Kong Gateway is ready, you will see the following message:
Kong Gateway Ready
decK is a CLI tool for managing Kong Gateway declaratively with state files. To complete this tutorial you will first need to install decK.
For this tutorial, you’ll need Kong Gateway entities, like Gateway Services and Routes, pre-configured. These entities are essential for Kong Gateway to function but installing them isn’t the focus of this guide. Follow these steps to pre-configure them:
Run the following command:
echo '
_format_version: "3.0"
services:
- name: example-service
url: http://httpbin.konghq.com/anything
routes:
- name: example-route
paths:
- "/anything"
service:
name: example-service
' | deck gateway apply -
To learn more about entities, you can read our entities documentation.
Before you can configure the authentication plugin, you must first create an auth server in Kong Identity. We recommend creating different auth servers for different environments or subsidiaries. The auth server name is unique per each organization and each Konnect region.
Create an auth server using the /v1/auth-servers
endpoint:
curl -X POST "https://us.api.konghq.com/v1/auth-servers" \
-H "Authorization: Bearer $KONNECT_TOKEN"\
-H "Content-Type: application/json" \
--json '{
"name": "Appointments Dev",
"audience": "http://myhttpbin.dev",
"description": "Auth server for the Appointment dev environment"
}'
Export the auth server ID and issuer URL:
export AUTH_SERVER_ID='YOUR-AUTH-SERVER-ID'
export ISSUER_URL='YOUR-ISSUER-URL'
Configure a scope in your auth server using the /v1/auth-servers/$AUTH_SERVER_ID/scopes
endpoint:
curl -X POST "https://us.api.konghq.com/v1/auth-servers/$AUTH_SERVER_ID/scopes" \
-H "Authorization: Bearer $KONNECT_TOKEN"\
-H "Content-Type: application/json" \
--json '{
"name": "my-scope",
"description": "Scope to test Kong Identity",
"default": false,
"include_in_metadata": false,
"enabled": true
}'
Export your scope ID:
export SCOPE_ID='YOUR-SCOPE-ID'
Configure a custom claim using the /v1/auth-servers/$AUTH_SERVER_ID/claims
endpoint:
curl -X POST "https://us.api.konghq.com/v1/auth-servers/$AUTH_SERVER_ID/claims" \
-H "Authorization: Bearer $KONNECT_TOKEN"\
-H "Content-Type: application/json" \
--json '{
"name": "test-claim",
"value": "test",
"include_in_token": true,
"include_in_all_scopes": false,
"include_in_scopes": [
"'$SCOPE_ID'"
],
"enabled": true
}'
You can also configure dynamic custom claims with dynamic claim templating to generate claims during runtime.
The client is the machine-to-machine credential. In this tutorial, Konnect will autogenerate the client ID and secret, but you can alternatively specify one yourself.
Configure the client using the /v1/auth-servers/$AUTH_SERVER_ID/clients
endpoint:
curl -X POST "https://us.api.konghq.com/v1/auth-servers/$AUTH_SERVER_ID/clients" \
-H "Authorization: Bearer $KONNECT_TOKEN"\
-H "Content-Type: application/json" \
--json '{
"name": "Client",
"grant_types": [
"client_credentials"
],
"allow_all_scopes": false,
"allow_scopes": [
"'$SCOPE_ID'"
],
"access_token_duration": 3600,
"id_token_duration": 3600,
"response_types": [
"id_token",
"token"
]
}'
Export your client secret and client ID:
export CLIENT_SECRET='YOUR-CLIENT-SECRET'
export CLIENT_ID='YOUR-CLIENT-ID'
When you configure the OAuth 2.0 Introspection plugin with Kong Identity, you must pass the client_id
and client_secret
as a Base64-encoded Basic Auth string (Basic MG9hNWl...
) in the config.authorization_value
field.
Base64-encode your client ID and client secret:
echo -n "$CLIENT_ID:$CLIENT_SECRET" | base64
Export your encoded credentials:
export ENCODED_CREDENTIALS='YOUR-ENCODED-CREDENTIALS'
You can configure the OAuth 2.0 Introspection plugin to use Kong Identity as the identity provider for your Gateway Services. In this example, you’ll apply the plugin to the control plane globally, but you can alternatively apply it to a Gateway Service.
First, get the ID of the quickstart
control plane you configured in the prerequisites:
curl -X GET "https://us.api.konghq.com/v2/control-planes?filter%5Bname%5D%5Bcontains%5D=quickstart" \
-H "Authorization: Bearer $KONNECT_TOKEN"
Export the control plane ID:
export CONTROL_PLANE_ID='YOUR-CONTROL-PLANE-ID'
Enable the OAuth 2.0 Introspection plugin globally:
curl -X POST "https://us.api.konghq.com/v2/control-planes/$CONTROL_PLANE_ID/core-entities/plugins/" \
-H "Authorization: Bearer $KONNECT_TOKEN"\
-H "Content-Type: application/json" \
--json '{
"name": "oauth2-introspection",
"config": {
"introspection_url": "'$ISSUER_URL'/introspect",
"authorization_value": "Basic '$ENCODED_CREDENTIALS'",
"consumer_by": "client_id",
"custom_claims_forward": [
"Claim"
]
}
}'
The Gateway Service requires an access token from the client to access the Service. Generate a token for the client by making a call to the issuer URL:
curl -X POST "$ISSUER_URL/oauth/token" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "grant_type=client_credentials" \
-d "client_id=$CLIENT_ID" \
-d "client_secret=$CLIENT_SECRET" \
-d "scope=my-scope"
Export your access token:
export ACCESS_TOKEN='YOUR-ACCESS-TOKEN'
Access the example-service
Gateway Service using the short-lived token generated by the authorization server from Kong Identity:
curl -i -X GET "$KONNECT_PROXY_URL/anything" \
-H "Authorization: Bearer $ACCESS_TOKEN"
Can I retrieve my client’s secret again?
No, the secret is only shared once when the client is created. Store it securely.