10 lines
238 B
TypeScript
10 lines
238 B
TypeScript
|
|
import type { WebhookRequestBody } from "@line/bot-sdk";
|
||
|
|
|
||
|
|
export function parseLineWebhookBody(rawBody: string): WebhookRequestBody | null {
|
||
|
|
try {
|
||
|
|
return JSON.parse(rawBody) as WebhookRequestBody;
|
||
|
|
} catch {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
}
|