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.
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.companyis the FQDN of the engomo installation.authentik.companyis the FQDN of the authentik installation.
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
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
- Log in to authentik as an administrator and open the authentik Admin interface.
- 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
- Log in to authentik as an administrator and open the authentik Admin interface.
- 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
StrictAuthorizationashttps://engomo.company/authandcom.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.
- Click Submit to save the new application and provider.
engomo configuration
Add the authentication method
- Open
https://engomo.company/composerand log in with your administrator credentials. - Select Server.
- Select Authentication.
- Click the plus icon to add a new authentication method.
- Set Name to
authentik. - Set Type to OpenID Connect.
- Click Create.
- 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
- Issuer:
- 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.
- Open
https://engomo.company/composerand log in with your administrator credentials. - Select Users & Devices.
- In the Users section, click the plus icon.
- From the Authenticator dropdown, select
authentik. - 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.