{"record":{"id":"11e55b4e7c0f1f7c","repo":"sipeed/picoclaw","slug":"teams-webhook-webhook-q-has-empty-webhook-url","errorCode":null,"errorMessage":"teams_webhook: webhook %q has empty webhook_url","messagePattern":"teams_webhook: webhook %q has empty webhook_url","errorType":"validation","errorClass":null,"httpStatus":null,"severity":"error","filePath":"pkg/channels/teams_webhook/teams_webhook.go","lineNumber":79,"sourceCode":"func NewTeamsWebhookChannel(\n\tbc *config.Channel,\n\tcfg *config.TeamsWebhookSettings,\n\tbus *bus.MessageBus,\n) (*TeamsWebhookChannel, error) {\n\tif len(cfg.Webhooks) == 0 {\n\t\treturn nil, fmt.Errorf(\"teams_webhook: at least one webhook target is required\")\n\t}\n\n\t// Require \"default\" webhook target\n\tif _, hasDefault := cfg.Webhooks[\"default\"]; !hasDefault {\n\t\treturn nil, fmt.Errorf(\"teams_webhook: a 'default' webhook target is required\")\n\t}\n\n\t// Validate all webhook targets have valid HTTPS URLs\n\tfor name, target := range cfg.Webhooks {\n\t\twebhookURL := target.WebhookURL.String()\n\t\tif webhookURL == \"\" {\n\t\t\treturn nil, fmt.Errorf(\"teams_webhook: webhook %q has empty webhook_url\", name)\n\t\t}\n\t\tparsed, err := url.Parse(webhookURL)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"teams_webhook: webhook %q has invalid URL: %w\", name, err)\n\t\t}\n\t\tif !strings.EqualFold(parsed.Scheme, \"https\") {\n\t\t\treturn nil, fmt.Errorf(\"teams_webhook: webhook %q must use HTTPS (got %q)\", name, parsed.Scheme)\n\t\t}\n\t}\n\n\tbase := channels.NewBaseChannel(\n\t\t\"teams_webhook\",\n\t\tcfg,\n\t\tbus,\n\t\t[]string{\n\t\t\t\"*\",\n\t\t}, // Output-only channel; \"*\" suppresses misleading \"allows EVERYONE\" audit warning\n\t\tchannels.WithMaxMessageLength(24000), // Power Automate webhook payload limit is 28KB","sourceCodeStart":61,"sourceCodeEnd":97,"githubUrl":"https://github.com/sipeed/picoclaw/blob/49183d7e8daed0dba89ddbb6fcb60089401d9680/pkg/channels/teams_webhook/teams_webhook.go#L61-L97","documentation":"Error \"teams_webhook: webhook %q has empty webhook_url\" thrown in sipeed/picoclaw.","triggerScenarios":"Thrown at pkg/channels/teams_webhook/teams_webhook.go:79 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"49183d7e8daed0dba89ddbb6fcb60089401d9680","analyzedAt":"2026-08-15T21:55:41.315Z","schemaVersion":2},"datasetVersion":"2026-08-15T22:17:37.221Z"}