Getting Your API Key & Secret
This page covers SDK credentials for
initialize()For the User JWT needed in connect(), see Creating the User JWT.
To use the Azeoo SDK, you need two credentials from the Azeoo team:
| Credential | Purpose | Used in |
|---|---|---|
| SDK API Key | Identifies your app | AzeooSDK.initialize(apiKey) |
| SDK Secret Key | Signs User JWTs | Your backend (see Creating the User JWT) |
How to get your credentialsβ
Platform coming soon
The self-service SDK credential platform is under development. In the meantime, contact the Azeoo team at support@azeoo.com to receive your SDK API Key and Secret Key.
When you receive your credentials:
- Save both keys securely β use environment variables or
.envfiles - Never commit keys to version control β add
.envto.gitignore - Use different keys for development and production
The API key goes into your React Native app for initialize(). The Secret Key stays on your backend β it never leaves your server.
Next Stepsβ
- Installation
- Integration
- Creating the User JWT β payload spec and backend code examples