Skip to main content

Integrate with engomo

Support level: Community

What is engomo?

engomo is a low-code app development platform to create enterprise apps for smartphones and tablets based on Android, iOS, or iPadOS.

-- https://engomo.com/

This guide explains how to set up engomo to use authentik as the OpenID Connect (OIDC) provider for application login on smartphones and tablets, and for login to the Composer admin web GUI.

Preparation

The following placeholders are used in this guide:

  • engomo.company is the FQDN of the engomo installation.
  • authentik.company is the FQDN of the authentik installation.
info

This documentation lists only the settings that you need to change from their default values. Be aware that any changes other than those explicitly mentioned in this guide could cause issues accessing your application.

authentik configuration

Redirect URI changes in authentik 2026.5

In authentik versions earlier than 2026.5, all Redirect URIs are automatically treated as Authorization type. If you are using one of these older authentik versions, add only the Authorization URL to your Redirect URIs and do not configure a Post Logout URI.

To support the integration of engomo with authentik, you need to create an application/provider pair in authentik.

Create property mappings

  1. Log in to authentik as an administrator and open the authentik Admin interface.
  2. Navigate to Customization > Property Mappings and click Create. Create a Scope Mapping with the following settings:
    • Name: Set an appropriate name.
    • Scope Name: profile
    • Description: Set an appropriate description, if desired.
    • Expression: return {"preferred_username": request.user.email}

Create an application and provider

  1. Log in to authentik as an administrator and open the authentik Admin interface.
  2. Navigate to Applications > Applications and click New Application to open the application wizard.
    • Application: provide a descriptive name, an optional group for the type of application, the policy engine mode, and optional UI settings. Take note of the Slug value because it is required later.
    • Choose a Provider type: select OAuth2/OpenID Connect as the provider type.
    • Configure the Provider: provide a name (or accept the auto-provided name), the authorization flow to use for this provider, and the following required configurations.
      • Note the Client ID and Client Secret values because they will be required later.
      • Add two Redirect URIs of type Strict Authorization as https://engomo.company/auth and com.engomo.engomo://callback/.
      • Select any available signing key.
      • Under Advanced protocol settings > Selected Scopes, add the scope that you created earlier.
    • Configure Bindings (optional): you can create a binding (policy, group, or user) to manage the listing and access to applications on a user's Application Dashboard page.
  3. Click Submit to save the new application and provider.

engomo configuration

Add the authentication method

  1. Open https://engomo.company/composer and log in with your administrator credentials.
  2. Select Server.
  3. Select Authentication.
  4. Click the plus icon to add a new authentication method.
  5. Set Name to authentik.
  6. Set Type to OpenID Connect.
  7. Click Create.
  8. Configure the following values using information from the authentik provider:
    • Issuer: https://authentik.company/application/o/<application_slug>/
    • Client ID: Client ID from authentik
    • Client Secret: Client Secret from authentik
  9. Click Save.

Create users

engomo does not automatically create users during OIDC sign-in. Create each user in engomo before they sign in with authentik.

  1. Open https://engomo.company/composer and log in with your administrator credentials.
  2. Select Users & Devices.
  3. In the Users section, click the plus icon.
  4. From the Authenticator dropdown, select authentik.
  5. Create the user with their email address as the username. This email address must match the user's email address in authentik.

The created user can access only the app or Composer page permissions that they have been granted in engomo.

Configuration verification

To confirm that authentik is properly configured with engomo, open engomo, enter the email address for the user that you created, and click the arrow icon to log in. You should be redirected to authentik and returned to engomo after authentication.

Resources