Anthropic Claudeソフトウェア開発⭐ リポ 1品質スコア 58/100
exa-webhooks-events
Exa webhookの署名検証とイベント処理を実装できます。webhookエンドポイントの設定、署名検証の実装、またはExaのイベント通知を安全に処理する場合に使用します。「exa webhook」「exa events」「exa webhook signature」「handle exa events」「exa notifications」といったフレーズで起動します。
description の原文を見る
Implement Exa webhook signature validation and event handling. Use when setting up webhook endpoints, implementing signature verification, or handling Exa event notifications securely. Trigger with phrases like "exa webhook", "exa events", "exa webhook signature", "handle exa events", "exa notifications".
SKILL.md 本文
注意: このスキルのライセンスは ライセンス未確認 です。本サイトでは本文プレビューのみを表示しています。利用前に GitHub の原本でライセンス条件をご確認ください。
Exa ウェブフック & イベント
概要
署名検証とリプレイ攻撃対策によって Exa ウェブフックを安全に処理します。
前提条件
- Exa ウェブフックシークレットが構成されていること
- インターネットからアクセス可能な 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/exa',
express.raw({ type: 'application/json' }),
async (req, res) => {
const signature = req.headers['x-exa-signature'] as string;
const timestamp = req.headers['x-exa-timestamp'] as string;
...
詳細情報
- 作者
- Brmbobo
- リポジトリ
- Brmbobo/Web2podcast
- ライセンス
- 不明
- 最終更新
- 2026/1/26
Source: https://github.com/Brmbobo/Web2podcast / ライセンス: 未指定