Forum Discussion
vivek_7383
Feb 22, 2025Copper Contributor
Slash Commands Not Appearing in Teams Bot After Configuration in Developer Portal
Environment:
- Teams Developer Portal
- Bot Framework SDK version (Botbuilder) :
4.23.0
- Development Environment: Node.js, v16.20.0
Current Setup:
- Created and configured slash command in Teams Developer Portal
- Command details:
- Name: give
- Description: Give drops to your team member
Steps Taken:
- Added slash command through Teams Developer Portal
- Configured command parameters and endpoints
- Published/updated app manifest
- Installed/updated app in Teams
Expected Behavior:
- Slash command should appear in message compose box
- Command should trigger bot response when used
Actual Behavior:
- Slash command not appearing in Teams
- No command functionality available
Troubleshooting Steps Already Tried:
- Verified command configuration in portal
- Reinstalled app
- Checked app manifest for command entry
Code/Configuration Snippets:
"commandLists": [
{
"commands": [
{
"title": "give",
"description": "Give drops to your team member"
}
],
"scopes": [
"team"
]
}
],
No RepliesBe the first to reply