Feishu Integration Configuration
ACE = AI Computing Explorer
This guide explains how to configure Feishu (Lark) integration to display real user names and group names instead of IDs.
Overview
Open ACE can integrate with Feishu to:
- Display real user names instead of
ou_xxxxxIDs - Display group names instead of
oc_xxxxxidentifiers
Prerequisites
- A Feishu developer account
- Admin access to create a custom app
Setup
1. Create a Feishu App
- Visit Feishu Open Platform
- Click "Create App" → "Enterprise Custom App"
- Fill in app name (e.g., "Open ACE")
- Save the App ID and App Secret
2. Configure Permissions
In the app settings:
- Go to "Permissions"
- Request the following permissions:
| Permission | Description |
|---|---|
contact:contact:user:readonly | Read user information |
chat:chat:readonly | Read chat information |
- Submit for approval if required
- Publish the app
3. Configure Open ACE
Edit ~/.open-ace/config.json:
{
"feishu": {
"app_id": "cli_xxxxxxxxxxxxxxxx",
"app_secret": "your_app_secret_here"
}
}
4. Test Configuration
# Test user info query
python3 scripts/shared/feishu_user_cache.py test ou_xxxxx <app_id> <app_secret>
# Test group info query
python3 scripts/shared/feishu_group_cache.py test chat_xxxxx <app_id> <app_secret>
Cache Management
User and group information is cached to avoid frequent API calls.
| Command | Description |
|---|---|
python3 scripts/shared/feishu_user_cache.py list | List cached users |
python3 scripts/shared/feishu_user_cache.py clear | Clear user cache |
python3 scripts/shared/feishu_group_cache.py list | List cached groups |
python3 scripts/shared/feishu_group_cache.py clear | Clear group cache |
Cache location: ~/.open-ace/feishu_users.json and ~/.open-ace/feishu_groups.json
Cache TTL: 1 hour (3600 seconds)
Troubleshooting
User names not showing
- Check if the app has
contact:contact:user:readonlypermission - Ensure the app is published
- Verify App ID and App Secret are correct
- Check if the user is an external contact (not in organization)
Group names not showing
- Check if the app has
chat:chat:readonlypermission - Note: OpenClaw uses internal
oc_prefixed IDs, not Feishuchat_IDs - For OpenClaw integration, group names may require additional configuration
API returns 403
- Verify App ID and App Secret
- Ensure the app is published
- Check if permissions are approved
Disabling Integration
To disable Feishu integration, remove the feishu section from your config file.