Getting Started
Learn the basics of integrating Cengel ID into your application.
Overview
Cengel ID is an OAuth 2.0 and OpenID Connect compliant identity provider that enables secure authentication and authorization for your applications. This documentation guides you through integrating Cengel ID into your application.
Our system supports the Authorization Code flow with standard client secret authentication. We issue JWT-based tokens that follow industry-standard security practices.
Prerequisites
- Create a registered OAuth application in yourdeveloper portal
- Obtain your Client ID and Client Secret from your registered application
- Register at least one redirect URI that matches your application's callback URL
- Use HTTPS-enabled redirect URIs for production (required for security)
Base URL
https://id.cengel.studio
Use this base URL for all API endpoints.
Quick Setup
- Register your application in thedeveloper portal
- Configure your redirect URIs (must match exactly)
- Select the scopes your application needs (seeScopesdocumentation)
- Implement the authorization flow in your application (seeAuthorization Flowdocumentation)
- Handle token exchange and retrieve user information (seeToken ManagementandUser Infodocumentation)
