Configuring OCI IAM Domain JWTs to use with ORDS OAuth2.0 protected APIs

Table of Contents

Intended Audience/Purpose

Does this describe you?

If this describes you, then keep reading!


Creating a Domain

Assuming you are at the central OCI Console, click the navigation icon at the top of your screen. Then, navigate to Identity & Security and click Create domain.

NOTE: Make sure you are in your correct Compartment (this will be up to you to decide)! Everything I show here is done within the same /ords Compartment. 

In this example, I’ve chosen to create an “External User” Domain type. I haven’t tested with any other Domain types, but I assume they all work similarly.

Once you’ve entered all the information (e.g., Domain administrator values and Compartment), click Create Domain. Then, click on the Domain you just created. Next, you’ll need to create and add an “Integrated application.”

Mini-tutorial: Adding a user to your Domain

In this mini-tutorial, I demonstrate how to create a new user. Notice how I am using a personal email account, you can totally do this!

Once you’ve added this user, they recieve a password reset email for this Domain. They must create a new password before logging in.

Adding an Integrated Application to the Domain

Adding the application

From within your Domain dashboard, click the Integrated Applications menu item. The “Add application” modal will appear. Read through the application types and choose the most appropriate one. For this demo, I selected “Confidential Application.”

Continue filling in the modal fields. Make sure you choose a unique name!

I’ve left the URLs section empty for this demo and kept the Display settings checked. The Display settings are options for users when logging into their Domain (i.e., they don’t impact this workflow, but they are nice to have set for later).

Click Next to continue to the Resource server configuration section.

Configuring OAuth2.0

In this section, you’ll configure your Resouce server and Client. First, we’ll create a Scope1.

Resource server configuration

When you configure your Scope, you must include a Primary audience field. Here, I’m just choosing the Domain’s name. The Primary audience needs to be structured exactly like this (with the trailing backslash)! Next, create a Scope (I’m using dot notation, since this will mirror the privilege I’ll create in ORDS, later).

When finished, click Add.

Client Configuration

Next, you’ll include details about your client. In this demo, I use Postman as a client application stand-in. For this example I’m using the Authorization code grant type2, along with a Redirect URL.

FYI: Postman has a /callback URL that you can use as a Redirect URL.
Mini-tutorial: How do I find Postman’s Callback URL?

From the Authorization tab, select OAuth 2.0. Then scroll down to the Configure New Token section. There you will find the Callback URL. Copy it. You’ll need it!

I’ve chosen “All” for the Token issuance policy. Next, click Finish.

Issuing a POST request to obtain a JWT

You can send off that initial POST request to obtain the JWT from IAM with your Domain set. You’ll then use the details contained in that JWT to configure ORDS.

Gathering the required values for the request

If your application hasn’t already been activated, do so now.

Next, click the Edit OAuth configuration button and retrieve your Client ID and Client secret. Save it to a clipboard or your environment files (if using this for an application).

You will also need the Domain URL. Navigate to your Domain’s main dashboard (❗️make sure you are still in the correct Compartment). Then copy the Domain URL to your clipboard, or environment file (aka .env file).

Setting up Postman

In Postman, make sure you have selected “Request Headers” in the Add authorization data to field. Also, add the word “Bearer” to the Header Prefix field.

You’ll want to select Authorization Code as the Grant Type. For the Authorization URL and Access Token URL, you will use your Domain URL followed by:

  • Auth URL
    [Your Domain URL]/oauth2/v1/authorize
  • Access Token URL
    [Your Domain URL]/oauth2/v1/token

Next, add your Client ID, Client Secret, and Scope. Notice how the Scope in Postman uses the Primary audience and the Scope (if you don’t remember where these came from, review the Resource server configuration section). Select “Send as Basic Auth header” for the Client Authentication field.

Requesting the JWT

This next part is easy. From Postman, scroll down to the bottom of the Authorization window until you see the Get New Access Token button. Click it; a new browser window will appear. Enter the user credentials (I’m using the one I created specifically for this demo), and if any pop-up blocker notifications appear, make sure you “allow pop-ups.”

Once authenticated with IAM, you’ll be redirected back to Postman (remember, this is the Redirect URL you added in the Client Configuration section).

Copy the entire JWT, and then click Use Token. You’ll now see the token in the Current Token field in Postman.

HELP ME! Okay, if the Sign-in and/or Redirect didn't work for you, it might be that you are still signed into another OCI session, with a different user (a user that doesn't belong to this Domain). So, what I've had to do in the past is make sure I'm logged out of all OCI sessions, clear my cookies, close out my browser, and then restart with a new one. This has nothing to do with ORDS, but its what worked for me.

ORDS configuration

In these following sections, you will configure your ORDS JWT Profile and ORDS Privilege (associated with the Scope you’ve created). But first, you’ll need to decode your JWT.

Decoding the JWT

In the past, I’ve used two different tools for decoding these JWTs: JWT.io and JWT.ms. In this demonstration I’m using JWT.io.

Paste your JWT into one of the decoders and copy the following values to your clipboard:

  • iss
  • scope
  • aud

The values you’ll need:

Creating the ORDS JWT profile

Step one: Create your JWT Profile. This process “registers” a JWT profile with ORDS, so when an incoming request comes in, ORDS can “cross-reference” information related to Issuers, Audiences, and Scopes.

The easiest way to do all this is to first navigate to an SQL Worksheet and then select the schema from the Navigator tab. Then, under the database objects drop-down menu, choose Packages.

Click the OAUTH package to expand it, scroll to the bottom of that list, right click the CREATE_JWT_PROFILE PL/SQL procedure, and click Run. A slider will appear.

Enter your details exactly like you see below:

  • P_ISSUER is https://identity.oraclecloud.com
  • P_AUDIENCE should be whatever your Primary audience is, with the trailing slash included!
  • P_JWK_URL
FYI: The P_JWK_URL is a combination of [Your Domain URL] + /admin/v1/SigningCert/jwk (this is the endpoint identified in the OCI IAM Domains API doc). And since this is a /v1 endpoint, I assume there may be more. So, double-check the docs in case of a different/updated version. 

Then, execute the PL/SQL procedure.

Next, you’ll create an ORDS Privilege (to associate with our protected ORDS Resources).

Creating an ORDS privilege

Aka, the “thing” we are protecting and making accessible with a valid JWT. Navigate to your REST Workshop. From the Security tab, select Privileges.

Create a new Privilege and name it exactly the same as the Scope you created in IAM. DO NOT INCLUDE the Primary audience in this scope name (In fact, you can’t; we won’t let you anyway 🤣)! In the Protected Modules tab, select the Module you want to protect. Either drag it from the Available Modules tab to the Selected Modules tab or use the arrows to move it over. Then click Create.

A peek at the ORDS API I’m using:

This just prints out the Current User, using the ORDS :current_user Implicit parameter.

Accessing your protected Resource (aka ORDS API) with the JWT

Now, you may access this protected resource. Unless you’ve taken an hour to set ORDS up, your token will still be valid (it’s valid for an hour). Otherwise, you’ll need to obtain a new, fresh JWT. Using the target ORDS API (mine is the “Hello :current_user” endpoint) in your Postman request field, click Send. You’ll see two things happen (if you are viewing your Postman Console):

  1. An initial POST request to the Token server, and
  2. A subsequent GET request to your target ORDS API

I should clarify…you might not see that initial POST request because you would have accomplished this before you opened the Postman Console. So, if you’d like to see these requests in real time, do this:

  • Clear out your cookies
  • Delete your existing token
  • Clear out the Console
  • Open the Console back up
  • Request a new JWT
  • Request your ORDS API (your protected Resource)

The End

And that’s it, finished! If you’ve made it this far, congratulations. That was a lot of work. Time for a coffee break!

Follow

And don’t forget to follow, like, subscribe, share, taunt, troll, or stalk me!

  1. Read up on Scopes here. ↩︎
  2. There are four different Grant Types in the OAuth 2.0 framework: Authorization Code, Implicit, Resource Owner Password Credentials, and Client Credentials. You can read more about them here. ↩︎

Leave a Comment