Getting Started

App Setup

Register your Blaze Application, define the allowed redirect URLs, then open Manage to review the generated OAuth credentials.

  1. 1

    Open Applications and start a new app

    This project already exposes the full app registration flow under Applications. Start there before you work on the authentication request itself.

    • Open the Applications page from the console navigation.
    • Click Register Your Application to open the creation form.
    • After a successful create, the UI sends you back to the Applications list and highlights the new row.
  2. 2

    Create the app, then open Manage

    Use the application form to create the client in one pass. Keep the setup brief: add the basic app details, submit the form, then move into Manage to review the generated credentials.

    • Add a clear application name so the app is easy to identify later in the Applications table.
    • Include at least one redirect URL before saving the application.
    • Local testing can use http://localhost, but non-local URLs should use HTTPS.
    • You can store up to 5 redirect URLs for a single application.
    • Every redirect URL must exactly match the redirect_uri you send later during OAuth.
    • After the app is created, open Manage to review the read-only Client ID and generate a Client Secret with New Secret.
  3. 3

    Store credentials and continue to OAuth

    The app setup flow in this project ends when your client configuration is ready. After that, move into the authentication guide and wire the credentials into your backend.

    • Treat client secret rotation carefully, because generating a new secret changes the credential your backend must use.
    • Keep the client secret in a trusted server environment and never expose it in browser code.
    • When the app record and redirect URLs are ready, continue with the OAuth documentation to build the authorization and token exchange flow.