Getting Started with Authoh
A comprehensive guide to setting up your Authoh account and integrating authentication into your application
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
- Go to the Authoh Dashboard
- Enter your email address and create a password
- Verify your email address
- Complete your profile information
Step 2: Create Your First Project
Once you've logged in to your Authoh dashboard:
- Click on "New Project" in the top-right corner
- Enter a name for your project
- Choose your project type (Web App, Mobile App, or API)
- Select your preferred authentication methods
Step 3: Configure Your Domain
For better branding and user experience:
- Go to "Settings" > "Domains"
- Add your custom domain (e.g., auth.yourdomain.com)
- Follow the DNS configuration instructions
- 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?
- Check our documentation for detailed guides
- Join our community Discord to connect with other developers
- Contact support@authoh.com for direct assistance
Remember, you can always reach out to our support team if you encounter any issues during the setup process.