Functions: Validate an API Key with API Gateway

In this tutorial, you use Oracle Functions to validate an API key passed from Oracle API Gateway. An API key is a simple method for securing an API by requiring the client to pass a specific token. The gateway can use the token as a custom authorizer to validate requests. You create a Python function that validates the token and returns an authenticated JSON response.

Key tasks include how to:

  • Gather required information.
  • Create an application for your function.
  • Create a "Hello World!" function.
  • Convert your function to validate the API key.
  • Deploy and test your function.
  • Create an API Gateway for your function
  • Call your function from the internet using your API Gateway.
The images shows OCI components used to run Oracle functions.

For additional information, see:

Before You Begin

To successfully perform this tutorial, you must have the following:

1. Gather Required Information

Collect all the information you need to complete the tutorial. Copy the following information into your notepad.

2. Perform Required Configuration

Perform all the configuration you need for the tutorial.

3. Create an API Gateway

To call your function, create an API Gateway.

4. Update Function to Validate API Key

Next, modify the boiler plate Python function to validate an API key.