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 1eb652e commit 272d1efCopy full SHA for 272d1ef
functions/zoom-meeting-webhook-handler/index.js
@@ -27,8 +27,10 @@ const handler = async function (event, context) {
27
const signature = `v0=${hashForVerify}`;
28
29
console.log('headers');
30
- console.log(headers);
31
- console.log(headers.get ? headers.get('x-zm-signature') : 'no headers.get');
+ console.log(event.headers);
+ console.log(
32
+ event.headers.get ? event.headers.get('x-zm-signature') : 'no headers.get'
33
+ );
34
35
console.log('message');
36
console.log(message);
0 commit comments