@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
23 lines (19 loc) • 685 B
text/typescript
import { WebhookEvent } from '@clerk/nextjs/server';
import { headers } from 'next/headers';
import { Webhook } from 'svix';
export const validateRequest = async (request: Request, secret: string) => {
const payloadString = await request.text();
const headerPayload = await headers();
const svixHeaders = {
'svix-id': headerPayload.get('svix-id')!,
'svix-signature': headerPayload.get('svix-signature')!,
'svix-timestamp': headerPayload.get('svix-timestamp')!,
};
const wh = new Webhook(secret);
try {
return wh.verify(payloadString, svixHeaders) as WebhookEvent;
} catch {
console.error('incoming webhook failed verification');
return;
}
};