Check out the free virtual workshops on how to take your SaaS app to the next level in the enterprise-ready identity journey!

Apply Authorization Code Flow With Kong Konnect and Okta

Originally published at konghq.com.
Apply Authorization Code Flow With Kong Konnect and Okta

We’ll go through the authorization code flow applied to user authentication processes in our second Kong and Okta tutorial. This series will show you how to implement service authentication and authorization for Kong Konnect and Okta using the OpenID Connect (OIDC) plugin. Parts 1, 3, and 4 cover:

Table of Contents

You can also watch this tutorial as a screencast.

Kong Konnect and Okta Integration Topology

The Konnect control plane creates new APIs and policies and publishes them to the data plane running as a Docker container in an AWS EC2 instance.

Kong Konnect and Okta Integration Topology

Authorization Code Flow

The authorization code flow goes through the following steps:

  1. First, a user tries to consume the API.
  2. If the user doesn’t have a token injected, Kong redirects the user to Okta, the identity provider.
  3. The user authenticates on Okta and is sent back to Kong with an authorization code token.
  4. Kong validates the parameters and exchanges the authorization code token by calling Okta’s token endpoint.

Auth Code Flow

Add Your Services and Routes to Konnect

In Konnect’s ServiceHub, I have a service created already. Follow along in our Getting Started with Konnect tutorial to learn how to create a service and routes.

My service has two routes defined already. I used the first service in the previous Kong and Okta tutorial to show the client credentials flow. In this tutorial, I’ll use the second service to apply the OIDC plugin utilizing the authorization code flow.

Routes

Set Up the Okta Application

In Okta, I prepared an application to implement the authorization flow already. In the Kong authorization code application, we’re going to use the configured OIDC plugin in addition to the client ID and client secret.

Okta Apps

The app has the authorization code option turned on and the signing redirect URI set with the route available in my data plane. That means the authorization code is accepted for this URI only.

OIDC App Settings

Consume the Route Without a Policy

Any user is free to consume the route right now since there’s no policy to control it.

Kong Konnect route with no OIDC policy

Apply the OpenID Connect Plugin

Just like we did for the client credentials flow tutorial, let’s go back to the Konnect control plane to apply the OIDC plugin and then implement the authorization code flow.

  1. Set the Config.Client ID.

    Kong OIDC Client ID Setup

  2. Enter the Config.Client Secret.

    Kong OIDC client secret setup

  3. Add Okta’s Config.Issuer endpoint.

    Kong OIDC issuer setup

Click Create to enable the OIDC plugin to the route.

Test the OpenID Connect Plugin

If we try to consume the route again, Kong redirects us to Okta’s user interface to present our credentials.

Okta user credential sign on

Once we have presented our correct credentials, Okta authenticates and redirects us back to the API gateway. At this time, we’ll consume the API because we got the identity token injected inside our request.

Kong and Okta Access Token

Then we go to jwt.io to check the token.

Protect Your Applications with Kong Konnect and Okta

Start a free trial, or contact Kong if you have any questions as you’re getting set up.

Once you’ve set up Konnect and Okta authorization code flow for user authentication, you may find these other tutorials helpful:

If you have any questions about this post, please leave a comment below. To be notified when the OktaDev team posts new content, please follow @oktadev on Twitter, like them on LinkedIn, or subscribe to their YouTube channel.

Okta Developer Blog Comment Policy

We welcome relevant and respectful comments. Off-topic comments may be removed.