Skip to the content.

Securing your API

Securing code is something that’s important to do. It will ensure that we are protecting our API Routes and allowing only correct users to run our end points. We can do this through the OneBlink SDK. This means we are going to utilise Node to get the OneBlink SDK in our project.

If you are using VS Code, you can open the terminal by pressing crtl+shift+\` on Windows or command+shift+\` on Mac.

With the open terminal in our API folder, we can run:

npm install --save @oneblink/sdk

This will install the OneBlink SDK to that project. If this is your first package install, it will create a folder named node_modules and create 2 files named package.json and package-lock.json.

If you haven’t seen these files and folder before, you can read this explanation below. If you have, skip to the next heading.

node_modules is where all the code for the installed packages is stored. package.json is used to provide important information regarding the project. It shows you the name of the project, installed dependencies and developer dependencies. It can display the version of the current project and provide you a place to write scripts that node can run for you. package-lock.json shows all of the required code to install specific packages, this includes all of that packages dependencies so you can have a full guide to what has been installed. This helps Node understand what has been installed and change only necessary data on later installations.

In this example, we have installed the SDK to use a static function from the OneBlink FormsApp class, we do not need a developer key for this. If you are interested in creating developer keys and how to use them with the SDK, you can read about that here

Now that we have installed the SDK, let us update our code!

Updating the Code

Now we need to go into our code and create some checks to ensure that the user is valid. The steps we will go through to achieve this are:

Now let us go down the list!

Create a new FormsApp Object

Firstly, we need to use the FormsApp object from the OneBlink SDK. Let us add this code to the top of our file we are working on:

const formsApp = require("@oneblink/sdk/tenants/oneblink");

If you are using ES Modules, you can instead write:

import { FormsApps } from '@oneblink/sdk/tenants/oneblink'

You can find out more about converting your functions to ES Module with this article.

Now that we have imported formsApp from the OneBlink SDK, we can use the function verifyJWT() to verify our user!

Use the VerifyJWT function from FormsApp

You can use this code to verify your user:

    const authenticationHeader = req.headers.authorization
    if (typeof authenticationHeader !== 'string'){
      return res.setStatusCode(400).setPayload({
        message: "Error, no user logged in. User must be logged in."
      });
    }

    const token = authHeader.split(' ')[1]
    const jwtPayload = await formsAppClient.verifyJWT(token)

Alright so let’s break this down. First, we are grabbing the authentication header from the request header that was sent to the API. After this, we are checking to see if the header is of type string. If it is not, the user has NOT logged in! That means we cannot authenticate them! In this case, we will return a 400 on the res object with setPayload(400) to return a 400 HTTP code and use setPayload({message: 'Error, no user logged in. User must be logged in.'}) as the payload with an error message. If there is an authentication header, we can split it based on white spaces and grab the value at the ‘1’ index. This will provide us with the JWT token. After this, we can run the function verifyJWT() with the token to verify who the user is!

After verifying the JWT, you are free to continue doing what you need to with your API! There are other OneBlink functions that can assist you in other JWT functions. For example, you can use our userService from @oneblink/sdk-core to get the user Profile of the specific user who is logged in.