📄️ Authentication overview
Configure authentication for Reqon API sources including OAuth2, Bearer tokens, API keys, and Basic auth with automatic token refresh.
📄️ OAuth 2.0 Authentication
OAuth 2.0 is the industry standard for API authentication, used by most enterprise APIs. Reqon supports OAuth 2.0 with automatic token refresh.
📄️ Bearer token authentication
Bearer token authentication is the most common auth method for REST APIs. The token is sent in the Authorization header with each request.
📄️ API Key Authentication
API key authentication sends a key in either a header or query parameter. Many SaaS APIs use this method.
📄️ Basic authentication
HTTP Basic Authentication sends username and password with each request, encoded in Base64. While simple, it should only be used over HTTPS.