Skip to content
Kong Logo | Kong Docs Logo
search
  • Docs
    • Explore the API Specs
      View all API Specs View all API Specs View all API Specs arrow image
    • Documentation
      API Specs
      Kong Gateway
      Lightweight, fast, and flexible cloud-native API gateway
      Kong Konnect
      Single platform for SaaS end-to-end connectivity
      Kong Mesh
      Enterprise service mesh based on Kuma and Envoy
      decK
      Helps manage Kong’s configuration in a declarative fashion
      Kong Ingress Controller
      Works inside a Kubernetes cluster and configures Kong to proxy traffic
      Kong Gateway Operator
      Manage your Kong deployments on Kubernetes using YAML Manifests
      Insomnia
      Collaborative API development platform
      Kuma
      Open-source distributed control plane with a bundled Envoy Proxy integration
  • Plugin Hub
    • Explore the Plugin Hub
      View all plugins View all plugins View all plugins arrow image
    • Functionality View all View all arrow image
      View all plugins
      Authentication's icon
      Authentication
      Protect your services with an authentication layer
      Security's icon
      Security
      Protect your services with additional security layer
      Traffic Control's icon
      Traffic Control
      Manage, throttle and restrict inbound and outbound API traffic
      Serverless's icon
      Serverless
      Invoke serverless functions in combination with other plugins
      Analytics & Monitoring's icon
      Analytics & Monitoring
      Visualize, inspect and monitor APIs and microservices traffic
      Transformations's icon
      Transformations
      Transform request and responses on the fly on Kong
      Logging's icon
      Logging
      Log request and response data using the best transport for your infrastructure
  • Support
  • Community
  • Kong Academy
Get a Demo Start Free Trial
Kong Gateway
2.8.x
  • Home icon
  • Kong Gateway
  • Developer Portal
  • Administration
  • Application Registration
  • Third-party OAuth2 Support for Application Registration
github-edit-pageEdit this page
report-issueReport an issue
  • Kong Gateway
  • Kong Konnect
  • Kong Mesh
  • Plugin Hub
  • decK
  • Kong Ingress Controller
  • Kong Gateway Operator
  • Insomnia
  • Kuma

  • Docs contribution guidelines
  • 3.5.x (latest)
  • 3.4.x
  • 3.3.x
  • 3.2.x
  • 3.1.x
  • 3.0.x
  • 2.8.x
  • 2.7.x
  • 2.6.x
  • Archive (pre-2.6)
enterprise-switcher-icon Switch to OSS
On this pageOn this page
  • Supported identity providers
    • Resources
  • Supported OAuth flows
    • Client Credentials Flow
    • Authorization Code Flow
    • Implicit Grant Flow
You are browsing documentation for an outdated version. See the latest documentation here.

Third-party OAuth2 Support for Application Registration

Third-party OAuth2 support allows developers to centralize application credentials management with the supported Identity Provider of their choice. To use the external IdP feature, set the portal_app_auth configuration option to external-oauth2 in the kong.conf.default configuration file. For more information, see setting the Authorization Provider Strategy.

The Kong OIDC and Portal Application Registration plugins are used in conjunction with each other on a Service:

  • The OIDC plugin handles all aspects of the OAuth2 handshake, including looking up the Consumer via custom claim (the custom_id matches the identity provider client_id claim).

  • The Application Registration plugin is responsible for checking the mapped Consumer and ensuring the Consumer has the correct ACL (Access Control List) permissions to access the Route.

Supported identity providers

The Kong OIDC plugin supports many identity providers out of the box. The following providers have been tested for the current version of the Kong Portal Application Registration plugin used in tandem with the Kong OIDC plugin:

  • Okta. See the Okta setup example.
  • Azure. See the Azure setup example.
  • Ping Identity.

Resources

How you authenticate with a Service depends on its underlying OAuth2 implementation. For more information, reference the documentation below for your implemented identity provider and OAuth flow.

  • Okta
    • Authorization Code Flow
    • Authorization Code Flow (PKCE)
    • Client Credentials Flow
    • Implicit Grant Flow
  • Azure
    • Authorization Code Flow
    • Client Credentials Flow
    • Implicit Grant Flow
  • Ping Identity
    • Oauth2 Developers Guide

Supported OAuth flows

  • Client Credentials (RFC 6742 Section 4.4)
  • Authorization Code (RFC 6742 Section 4.1)
  • Implicit Grant (RFC 6742 Section 4.2)
  • Password Grant (RFC 6742 Section 4.3)

Password Grant and Implicit Grant flows are available but not recommended because they are less secure than the Authorization Code and Client Credentials flows.

Client Credentials Flow

The OIDC plugin makes authenticating using Client Credentials very straightforward. This flow should be used for server-side and secure machine-to-machine communication. The Client Credentials flow requires the authorizing party to store and send the application’s client_secret.

In this flow, a developer makes a request against the Service with the OIDC and Application Registration plugins applied. This request should contain the client_id and client_secret as a Basic Auth authentication header:

Authorization: Basic client_id:client_secret

The client_id:client_secret should be base64-encoded.

The following sequence diagram illustrates the Client Credentials flow through the OIDC and Application Registration plugins. Click on the image to expand its view.

Client Credentials Flow

Step Explanation
a Developer sends the Okta application’s client_id and client_secret to the Route. The OIDC plugin proxies this request to the Okta auth server’s endpoint.
b Okta reads the client_id and client_secret and generates an access token. The auth server is configured to insert a custom claim application_id, which is a key/value pair with the Okta application’s client_id.
c Okta returns the access token to Kong.
d The OIDC plugin reads the resulting access token and associates the request with the application via the application_id custom claim.
e If the resolved application has permission to consume the Service via its Portal Application Registration plugin, Kong forwards the request to the Upstream.

Authorization Code Flow

Due to limitations of the OIDC plugin, a single plugin instance cannot handle dynamic client_id's provisioned from multiple sources (applications). To circumvent this issue, the IdP Issuer URL is exposed to developers on the Dev Portal application show page when show_issuer is enabled in the Application Registration plugin. Developers can hit the Issuer URL directly to provision an access token. After getting the access token, requests can be made against the proxy.

  1. Set up the application to secure an access token against the IdP directly. For more information about implementing the Authorization Code flow with Okta, refer to the Okta developer guide.

  2. After the initial access token handshake has been completed, make subsequent requests to the Kong service using that access token as a bearer token. After the first successful request, the OIDC plugin will establish a session with the client so that the access token does not need to be continually passed with every request.

The following sequence diagram illustrates the Authorization Code flow through the OIDC and Application Registration plugins. Click on the image to expand its view.

Authorization Code Flow

Step Explanation
a A developer copies the target Service’s issuer_id, which can be exposed in the Dev Portal application view Service Details page. Developers can configure their application to make a request to this endpoint to authenticate the user and retrieve an access token.
b Okta redirects the user to a login page.
c The user inputs their Single Sign-On (SSO) information.
d The user submits the SSO form that contains their Okta username and password.
e Upon a successful login, the application is given an access token to make against calls for all subsequent requests.
f The user makes a request to the protected Service and Route.
g The OIDC plugin takes the access token and runs introspection, consulting the Okta authorization server if necessary. After the access token has been verified, the plugin matches the custom claim to find the associated application Consumer via its custom_id.
h The request is passed to the Application Registration plugin, which checks to make sure the Consumer has the appropriate ACL (Access Control List) permissions.
i The request is proxied to the Upstream.

Implicit Grant Flow

The Implicit Grant flow is not recommended if the Authorization Code flow is possible.

  1. Set up the application to secure an access token against the IdP directly. For more information about implementing the Implicit Grant flow with Okta, refer to the Okta developer guide.

  2. After the access token handshake has been completed, make subsequent requests to the Kong service using that access token as a bearer token. After the first successful request, the OIDC plugin will establish a session with the client so that the access token does not need to be passed continuously.

Thank you for your feedback.
Was this page useful?
Too much on your plate? close cta icon
More features, less infrastructure with Kong Konnect. 1M requests per month for free.
Try it for Free
  • Kong
    Powering the API world

    Increase developer productivity, security, and performance at scale with the unified platform for API management, service mesh, and ingress controller.

    • Products
      • Kong Konnect
      • Kong Gateway Enterprise
      • Kong Gateway
      • Kong Mesh
      • Kong Ingress Controller
      • Kong Insomnia
      • Product Updates
      • Get Started
    • Documentation
      • Kong Konnect Docs
      • Kong Gateway Docs
      • Kong Gateway Enterprise Docs
      • Kong Mesh Docs
      • Kong Insomnia Docs
      • Kong Konnect Plugin Hub
    • Open Source
      • Kong Gateway
      • Kuma
      • Insomnia
      • Kong Community
    • Company
      • About Kong
      • Customers
      • Careers
      • Press
      • Events
      • Contact
  • Terms• Privacy• Trust and Compliance
© Kong Inc. 2023