Skip to content

Instantly share code, notes, and snippets.

View cvvishalkumar's full-sized avatar
🤓
Climbing the ladder to reach the summit of being a Salesforce MVP!

cvvishalkumar

🤓
Climbing the ladder to reach the summit of being a Salesforce MVP!
View GitHub Profile
@cvvishalkumar
cvvishalkumar / NodeApp-to-generate-HMAC-SHA256.JS
Last active October 3, 2023 08:16
SFMC-Zoom-Webhook-Integration
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) => {