Sub-skill of teams-api: Common Issues.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill common-issues --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Common Issues?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-common-issues-148778a2)More formats (shields.io, HTML) on the badges page.
---
name: teams-api-common-issues
description: 'Sub-skill of teams-api: Common Issues.'
version: 1.0.0
category: business
type: reference
scripts_exempt: true
---
# Common Issues
## Common Issues
**Issue: Bot not receiving messages**
```bash
# Verify messaging endpoint is accessible
curl -X POST https://your-bot.azurewebsites.net/api/messages \
-H "Content-Type: application/json" \
-d '{"type": "ping"}'
# Check Azure App Registration permissions
# Verify Teams channel is enabled in Bot Framework
```
**Issue: Webhook returns error**
```python
# Debug webhook response
response = requests.post(webhook_url, json=payload)
print(f"Status: {response.status_code}")
print(f"Response: {response.text}")
```
**Issue: Graph API permission denied**
```bash
# Verify API permissions are granted
# Admin consent may be required for application permissions
# Check token scopes match required permissions
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.