Skip to main content
Version: 3.x

Server and client side calls

Usually, apps are built on top of two communication methods - webhooks and API requests. While webhooks are always server-side (Saleor core calls the backend of your app), API requests from App to Saleor can be both server and client (frontend) sides.

This article highlights main differences of both approaches.

Two types of tokens​

Saleor App API uses two types of tokens:

  • AppToken - used for server-side calls
  • AccessToken - used for client-side calls

AppToken​

AppToken is an infinite token generated when the App is being installed. Saleor will call tokenTargetUrl from the App Manifest and the App needs to store the token in the safe place if it wants to consume the Saleor API. Official Saleor Apps and app-sdk uses APL concept to store the token.

The AppToken is recommended to use for server-side calls. It represents App itself and doesn't store any user information. It doesn't expire, so it should not be exposed to the front end.

AccessToken​

AccessToken is a JWT token that represents a user. It is generated once the user opens the App frontend in the Dashboard. The Dashboard provides the token to the App using AppBridge.

This token expires, and the dashboard refreshes it in the background. In case of any leak, it will eventually expire and become useless. Hence it's better for client-side calls due to the security concerns.

AccessToken is unique for the user - it stores user and permissions in its payload. Permissions of the token are an intersection of the user's and the app's permissions. This mechanism prevents the App from performing more operations than allowed.

Tokens comparison​

BehaviorAppTokenAuthToken
CreationDuring installationWhen user opens the App
LifespanInfiniteFinite, configurable in Saleor. Automatically refreshed with Refresh Tokens
User dataDoesn't storeStores user and user's permissions
StorageShould be stored securelyStored in the memory automatically

This should give us a basic understanding of the tokens and their usage now. Let's see how to use them in practice.

Saleor API calls - examples​

Let's cover a few popular scenarios and evaluate which token suits best to be used.

Safely submit app's configuration form​

Imagine your app contains 2 parts:

  1. Frontend with html <form> that contains configuration fields
  2. Api endpoint POST /config that saves the configuration

How to prevent the rogue user from calling the endpoint directly and bypassing the front end?

AccessToken can help with that. The app frontend should attach AccessToken to the header and the backend can verify it.

The app-sdk providers a helper function for this (Next.js only):

// pages/config.tsx

import { createProtectedHandler } from "@saleor/app-sdk/handlers/next";

export default createProtectedHandler(
(req, res, ctx) => {
// Request is authenticated at this point.
// Additionally it checks if the user has MANAGE_ORDERS permission!

return res.status(200).json({ success: true });
},
saleorApp.apl,
["MANAGE_ORDERS"]
);

Read more in app-sdk docs

Call Saleor API during app installation​

Saleor app installation is a server-side process. Saleor calls the tokenTargetUrl and provides AppToken in the payload.

At this point, the app can call Saleor API using the AppToken.

Since the front-end is not available to the user, there is no way to obtain AccessToken.

Call Saleor API from the webhook handler​

Webhooks are always server-side calls. If the app needs more data than it can obtain via subscription query, it can call Saleor API using AppToken. The app-sdk provides factories for webhooks that extract AppToken from the request and provides it to the handler. You can read more here

Call Saleor API from the front-end and display the result​

Many apps will operate on the front-end. For example - the app that fetches many products and allows to edit them in bulk.

If the app contains MANAGE_PRODUCTS permission, both AuthToken and AppToken will be permitted to read and write products from the API.

At this point, it's up to you how to handle the request:

  1. Call Saleor directly using AuthToken. This is the easiest way.
  2. Call your own endpoint, which will call Saleor API using AppToken.

Was this page helpful?