Anthropic Claudeソフトウェア開発⭐ リポ 1品質スコア 58/100
instantly-webhooks-events
Instantlyのウェブフック署名検証とイベントハンドリングを実装できます。ウェブフックエンドポイントの設定、署名検証の実装、またはInstantlyのイベント通知を安全に処理する際に利用します。「instantly webhook」「instantly events」「instantly webhook signature」「handle instantly events」「instantly notifications」などのフレーズで起動します。
description の原文を見る
Implement Instantly webhook signature validation and event handling. Use when setting up webhook endpoints, implementing signature verification, or handling Instantly event notifications securely. Trigger with phrases like "instantly webhook", "instantly events", "instantly webhook signature", "handle instantly events", "instantly notifications".
SKILL.md 本文
注意: このスキルのライセンスは ライセンス未確認 です。本サイトでは本文プレビューのみを表示しています。利用前に GitHub の原本でライセンス条件をご確認ください。
Instantlyウェブフック&イベント
概要
署名検証とリプレイ保護を使用して、Instantlyウェブフックを安全に処理します。
前提条件
- Instantlyウェブフックシークレットが設定されていること
- インターネットからアクセス可能なHTTPSエンドポイント
- 暗号署名の理解
- アイデンポテンシー用のRedisまたはデータベース(オプション)
ウェブフックエンドポイントのセットアップ
Express.js
import express from 'express';
import crypto from 'crypto';
const app = express();
// IMPORTANT: Raw body needed for signature verification
app.post('/webhooks/instantly',
express.raw({ type: 'application/json' }),
async (req, res) => {
const signature = req.headers['x-instantly-signature'] as string;
const timestamp = req.headers['x-ins
...
詳細情報
- 作者
- Brmbobo
- リポジトリ
- Brmbobo/Web2podcast
- ライセンス
- 不明
- 最終更新
- 2026/1/26
Source: https://github.com/Brmbobo/Web2podcast / ライセンス: 未指定