We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 485f493 commit c08f0aeCopy full SHA for c08f0ae
functions/zoom-meeting-webhook-handler/index.js
@@ -28,7 +28,7 @@ const handler = async function (event, context) {
28
29
const signature = `v0=${hashForVerify}`;
30
31
- if (request.headers['x-zm-signature'] !== signature) {
+ if (event.headers['x-zm-signature'] !== signature) {
32
console.log('Unauthorized', event);
33
return {
34
statusCode: 401,
0 commit comments