create_subscription
Create a webhook subscription for a YouTube channel to receive signed POST notifications when a new video is published.
Instructions
Turn a YouTube channel into a webhook: Feedhook will POST signed JSON {event:'video.published', videoId, title, author, url, publishedAt, …} to callbackUrl ~8s after every new video. The response includes a per-subscription secret (shown once) for verifying the X-Feedhook-Signature header (sha256 HMAC of the raw body).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel | Yes | The channel as an @handle (e.g. '@mkbhd'), a youtube.com channel URL, or a raw UC… id — resolved server-side. | |
| callbackUrl | Yes | The http(s) URL that will receive the webhook POSTs. |