Getting SDK Token
To use the Azeoo SDK, you need to obtain an API key (SDK token) from the Azeoo client platform admin panel.
Overview
The SDK token is a unique identifier that authenticates your application with the Azeoo services. This token is required to initialize the SDK and access all features.
Steps to Get Your SDK Token
1. Register for Azeoo Platform
- Visit the Azeoo Client Platform (or your organization's Azeoo admin portal)
- Click on "Sign Up" or "Register" if you don't have an account
- Fill in your organization details:
- Company/Organization name
- Email address
- Contact information
- Business details
2. Complete Payment
- After registration, navigate to the "Billing" or "Subscription" section
- Choose a subscription plan that includes SDK access:
- Starter Plan: Basic SDK features
- Professional Plan: Full SDK access with advanced features
- Enterprise Plan: Custom features and dedicated support
- Complete the payment process using your preferred method
- Wait for payment confirmation (usually instant)
3. Access Admin Panel
- Once payment is confirmed, log in to your account
- Navigate to the "SDK" or "Developer" section in the admin panel
- You'll see your organization dashboard
4. Generate SDK Token
- In the SDK section, click on "Create New SDK Token" or "Generate API Key"
- Fill in the token details:
- Application Name: Name of your iOS app
- Platform: Select "iOS"
- Environment: Choose "Production" or "Development"
- Description: Optional description for your reference
- Click "Generate Token"
- Your SDK token will be displayed (e.g.,
azeoo_ios_xxxxxxxxxxxxxxxxxxxxx)
5. Save Your Token Securely
[!WARNING] Copy and save your SDK token immediately. It will only be shown once for security reasons.
- Store it in a secure location
- Use environment variables or secure storage in your app
- Never commit tokens to version control
- Consider using a secrets management service for production
Token Format
SDK tokens follow this format:
azeoo_ios_<environment>_<unique_identifier>
Example:
azeoo_ios_prod_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6
Token Security Best Practices
- Never expose tokens in client-side code - Use server-side proxy when possible
- Rotate tokens regularly - Generate new tokens and revoke old ones
- Use different tokens for development and production
- Monitor token usage - Check the admin panel for unusual activity
- Revoke compromised tokens immediately
Troubleshooting
Token Not Working
- Verify the token is copied correctly (no extra spaces)
- Check if the token is for the correct platform (iOS)
- Ensure your subscription is active
- Contact support if issues persist
Token Expired
- Check your subscription status in the admin panel
- Renew your subscription if needed
- Generate a new token if the old one was revoked
Need Help?
- Visit the Support Center
- Contact your account manager
- Email: support@azeoo.com
Next Steps
Once you have your SDK token:
- Install the SDK
- Integrate into your app
- Configure the SDK with your token