This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express'); | |
const crypto = require('crypto'); | |
const app = express(); | |
const PORT = process.env.PORT || 3000; | |
const ZOOM_WEBHOOK_SECRET = 'abcdefghijklmnop'; // Replace with your Zoom webhook secret | |
app.use(express.json()); | |
app.post('/webhook', (req, res) => { |