Authentication
The Ferrum supports various authentication mechanisms depending on your deployment configuration.
Bearer Token Authentication
Most deployments use Bearer token authentication. Include the token in the Authorization header:
API Key Authentication
Some deployments may use API keys. Include the key in a custom header:
OAuth 2.0
For OAuth 2.0 authentication, follow the standard OAuth 2.0 flow:
- Obtain an access token from your authorization server
- Include the token in the
Authorization header as a Bearer token
Unauthenticated Access
Some endpoints may be configured for public access (read-only). Check your server configuration for details.
Always use HTTPS in production to protect authentication credentials.