How to Add a Whitelisted Service Client
This guide explains how to create and configure a whitelisted service client.
Steps
1. Create Service Client Key in Authress
- Navigate to the Authress Management Portal
- Create a new service client
- Make note of your chosen name as it will be needed for the whitelist configuration. The name should be lowercase and use hyphens instead of spaces.
- Securely store the generated service client key
2. Add Client to Whitelist Configuration
- Locate the
WhitelistedServiceClientsenum inside dependencies.py. - Add a new entry for your service client following these rules:
- Use lowercase letters
- Replace spaces with hyphens
- Example: If your service client name is "My Service", the enum entry should be "my-service"
- Commit the changes and push to the repository.