Phantom token integration
This guide describes how to integrate Kong Gateway Enterprise and the Curity Identity Server using the Kong OpenID Connect plugin.
This guide focuses on configuring the plugin for introspection, and especially as it relates to the introspection using the Phantom Token pattern. Some tweaks are made so that a phantom token is provided in the introspection response and then passed on to the upstream API.
Configuring the Curity Identity Server to provide a Phantom Token in the introspection response is outlined in more detail in this Introspection and Phantom Tokens article.
Prerequisites
- An installation of the Curity Identity Server
- An introspection endpoint configured with the Token Procedure Approach
Configure Kong
The Kong OpenID Connect plugin is configured to introspect an incoming opaque access token and in return receive a JWT in the introspection response from the Curity Identity Server. The plugin is enabled for a service or a route.
As part of the introspection, the OpenID Connect plugin also has the ability to validate that required scopes are available in the introspected token. Access to the requested API are denied if the correct scopes are missing.
If access is granted, the JWT from the introspection response is added to a header and forwarded to the upstream API where it can be consumed.
Create a service
Create a service that can be used to test the integration.
curl -i -X POST http://localhost:8001/services/ \
--data name="httpbin" \
--data protocol="http" \
--data url="https://httpbin.konghq.com"
Create a route
Add a route to the service.
curl -i -X POST http://localhost:8001/services/httpbin/routes \
--data "paths[]=/httpbin"
Configure the plugin
The Kong OpenID Connect plugin is enabled for the previously created service. In the example below, the openid
scope is required in order for access to be granted. As noted by the config.upstream_headers_claims
configuration, the plugin looks for the JWT
(the phantom token) claim in the introspection response. The config.upstream_headers_names
configuration extracts the JWT
from the introspection response and adds it to a phantom_token
header in the call to the upstream API.
curl -X POST http://localhost:8001/services/httpbin/plugins \
--data name="openid-connect" \
--data config.issuer="https://idsvr.example.com/oauth/v2/oauth-anonymous" \
--data config.client_id="gateway-client" \
--data config.client_secret="Password1" \
--data config.scopes_required="openid" \
--data config.hide_credentials="true" \
--data config.upstream_access_token_header= \
--data config.upstream_headers_claims="phantom_token" \
--data config.upstream_headers_names="phantom_token" \
--data config.auth_methods="introspection"
Parameter | Description | Example | Required for integration |
---|---|---|---|
config.issuer |
Used for discovery. Kong appends /.well-known/openid-configuration . Should be set to the realm or iss if no discovery endpoint is available. |
https://idsvr.example.com/oauth/v2/oauth-anonymous |
Yes |
config.client_id |
The ID of a client with the introspection capability | gateway-client |
Yes |
config.client_secret |
Secret of the client used for introspection | Password1 |
Yes |
config.scopes_required |
Optional scopes required in introspection result for coarse grained authorization. By default the plugin looks for the scopes in the scopes claim in the introspection result. This could be overridden with the config.scopes_claim configuration. |
openid email records_read |
No |
config.hide_credentials |
Boolean value. This will prevent the incoming Access Token from being forwarded to the upstream API. | true |
No |
config.upstream_access_token_header |
In order to prevent the plugin from adding the Access Token back in the upstream request, actively set this value to nothing (aka, nil ) by setting config.upstream_access_token_header= as in the example above . This configuration works in conjunction with config.hide_credentials to prevent the incoming Access Token from being passed to the upstream API. |
authorization:bearer |
No |
config.upstream_headers_claims |
Contains claim that holds Phantom Token in the introspection result. | phantom_token |
Yes |
config.upstream_headers_names |
Contains upstream header name that will hold the Phantom Token from the introspection result. | phantom_token |
Yes |
config.auth_methods |
Several methods are supported for authenticating the request. For this use case, this should be limited to introspection . |
introspection |
No |
config.cache_introspection |
Boolean value that controls whether an introspection result should be cached. | true |
No |
config.introspect_jwt_tokens |
Boolean value that controls if JWTs sent in an Authorization header should also be introspected. | false |
No |
config.introspection_endpoint |
Endpoint for introspection. Might be needed if discovery is not possible. | https://idsvr.example.com/oauth/v2/oauth-introspect |
No |
Test the configuration
Any supported OAuth/OIDC flow can be used to obtain an opaque access token from the Curity Identity Server. Several approaches for obtaining a token are outlined in the Curity Getting Started Guide. Make sure that the token issued contains the openid
scope.
Call the exposed service created earlier and pass the opaque access token in the Authorization
header.
curl -X GET http://kong:8000/httpbin/get \
--header "Authorization: Bearer <OPAQUE ACCESS TOKEN"
Kong introspects the opaque token and receives the JWT in the response. The JWT is forwarded to the upstream API. Because the configured upstream API is httpbin
, it is echoed back. The below sample response shows the phantom_token
that contains the JWT and can be consumed by the API. The response is truncated for readability.
{
"args": {},
"headers": {
...
"Host": "httpbin.konghq.com",
"Phantom-Token": "eyJraWQiOiIxN...",
"X-Forwarded-Host": "localhost",
"X-Forwarded-Path": "/httpbin/get",
"X-Forwarded-Prefix": "/httpbin"
},
"origin": "172.27.0.1, 69.181.2.136",
"url": "http://localhost/get"
}
Resources
- Overview of the Phantom Token Pattern
- Information on the Introspection and Phantom Tokens flow
- Installing the Curity Identity Server