Skip to content

Register Your App

Get your client ID from the Flowsta Developer Dashboard.

Whether you're building a web app with OAuth or a desktop Holochain app with identity linking, you need a registered app and a client ID.

Step 1: Create a Developer Account

  1. Go to dev.flowsta.com
  2. Sign up or log in with your Flowsta account

Step 2: Create an Application

  1. Click Create New App
  2. Enter your app's details:
    • App Name — Shown to users during OAuth consent or Vault approval
    • App Description — Brief description of your app
    • Application Type — Web App, Desktop App, or Holochain App

Step 3: Configure Your App

Configuration differs based on your integration path.

For Web Apps (OAuth)

Redirect URIs

Add the URLs where users are redirected after authentication:

http://localhost:3000/auth/callback    (development)
https://yourapp.com/auth/callback       (production)

TIP

Add both development and production URIs. You can add multiple redirect URIs.

Select Scopes

Choose which user data your app needs:

ScopeDataNotes
openidUser ID (sub)Auto-included
display_nameDisplay name
usernameUsername
emailEmail addressRequires explicit user permission
profile_pictureProfile picture URL
didW3C Decentralized Identifier
public_keyHolochain agent public key

For Holochain Apps (Identity Linking)

Holochain apps don't need redirect URIs or scopes. Your client ID is used to identify your app when users approve identity linking requests in Flowsta Vault.

The app name you set here is what users see in the Vault approval dialog:

"Your App Name" wants to link your Flowsta identity
[Deny]  [Allow]

Branding (Optional)

  • Logo URL — Shown on the OAuth consent screen or Vault approval dialog
  • Privacy Policy URL — Link to your privacy policy
  • Terms of Service URL — Link to your terms

Step 4: Copy Your Client ID

Your client ID looks like: flowsta_app_abc123def456...

Use this in your SDK configuration:

Web App:

typescript
const auth = new FlowstaAuth({
  clientId: 'flowsta_app_abc123def456',
  redirectUri: 'https://yourapp.com/auth/callback'
});

Holochain App:

typescript
const result = await linkFlowstaIdentity({
  appName: 'YourApp',
  clientId: 'flowsta_app_abc123def456',
  localAgentPubKey: myAgentKey,
});

No Client Secret

Flowsta uses PKCE for web apps and IPC for desktop apps — no client secret needed for either path.

Next Steps

Documentation licensed under CC BY-SA 4.0.