Category
Support: Beginners
All support articles related to Beginners.

Getting Started with Authoh

Welcome to Authoh!

This guide will help you get started with Authoh's authentication platform. We'll cover everything from creating your account to integrating authentication into your application.

Step 1: Create Your Account

  1. Go to the Authoh Dashboard
  2. Enter your email address and create a password
  3. Verify your email address
  4. Complete your profile information

Step 2: Create Your First Project

Once you've logged in to your Authoh dashboard:

  1. Click on "New Project" in the top-right corner
  2. Enter a name for your project
  3. Choose your project type (Web App, Mobile App, or API)
  4. Select your preferred authentication methods

Step 3: Configure Your Domain

For better branding and user experience:

  1. Go to "Settings" > "Domains"
  2. Add your custom domain (e.g., auth.yourdomain.com)
  3. Follow the DNS configuration instructions
  4. Verify your domain

Step 4: Integrate with Your Application

Using Our SDK

// Install the SDK
npm install @authoh/sdk

// Initialize in your app
import { AuthClient } from '@authoh/sdk';

const auth = new AuthClient({
  domain: 'your-project.authoh.com',
  clientId: 'YOUR_CLIENT_ID'
});

// Implement login
function login() {
  auth.loginWithRedirect();
}

Need More Help?

Remember, you can always reach out to our support team if you encounter any issues during the setup process.