No Authentication
Some HTTP endpoints don't require authentication or use API keys passed in headers.
When to Use
Use the "No Authentication" option when:
- The endpoint is publicly accessible
- Authentication is handled via custom headers
- The endpoint uses IP whitelisting for security
Configuration
When configuring an HTTP connector with no authentication:
- Select "None" from the Authentication dropdown
- Ensure any required API keys are included in the Headers section
Example Headers
If the API requires an API key in the header:
Content-Type: application/json
X-API-Key: your_api_key_here
Testing the Connection
To test an HTTP connector with no authentication:
- Configure the connector with the appropriate URL and headers
- Click "Test Connection"
- Verify that the test request succeeds
- Check the response for any error messages
Security Considerations
When using HTTP connectors without authentication:
- Ensure the receiving endpoint has appropriate security measures
- Consider using HTTPS to encrypt data in transit
- Implement IP restrictions on the receiving end if possible
- Regularly rotate any API keys used in headers