iYou Tech · Developers

Connect your application

Connect your application to iYou Tech products and use shared authentication, permissions, and services. This guide helps you prepare, choose an integration approach, and verify the result.

For partners and developersPlatform version 0.1.5

01 / Preparation

Register an application

Define the application's purpose, audience, and deployment URLs. An administrator then registers the application and grants the required permissions. Application registration and the private package registry do not currently offer anonymous self-service access.

  1. 1

    Prepare application details

    Provide the application name, owner, tenant, intended users, and the roles and resources it needs to access.

  2. 2

    Confirm the client type and URLs

    Choose Web BFF, Web SPA, or a native application. Provide allowed origins, exact callback URLs, and post-logout return URLs. Register local development and deployed clients separately.

  3. 3

    Obtain configuration and confirm policies

    Ask your administrator for the client ID, application permissions, and integration test arrangements. Confirm the login template, session policies, and step-up authentication requirements.

Registration details · JSONC
// Replace example values. This checklist is not a ready-to-submit API request.{  "application_name": "Your application name",  "owner": "Application owner",  "client_type": "Web SPA",  "origin": "https://app.example.com",  "redirect_uri": "https://app.example.com/auth/callback",  "post_logout_redirect_uri": "https://app.example.com/"}

Replace example domains with your actual URLs. Callback URLs must exactly match the registration; do not use wildcards.