Your Own Solution

This document describes how to complete a basic Eartho integration in a web app.

1. Before we start, you need to import Eartho into your app.

Step 1 - Create your first project

2. Integrating Eartho into your app

Set the Issuer
Configure Eartho as your OIDC provider by setting the issuer and wellKnown fields. This allows your app to retrieve Eartho’s OIDC configuration.

issuer: "https://account.eartho.io"
wellKnown: "https://account.eartho.io/.well-known/openid-configuration"
Redirect URI Setup
Ensure your Eartho application is configured to recognize your app’s redirect URI, where Eartho will return authorization codes or tokens after authentication.

Benefits of OIDC Integration
Standardized Protocol: Provides a robust, industry-standard authentication approach.
Enhanced Security: Leveraging Eartho’s secure OIDC flow minimizes unauthorized access.
Compatibility: Integrates with other OIDC-compatible identity providers and authentication systems.

Last updated