I had a support ticket that got escalated with final email indication to post in here.
We have groups that integrate into our platform using JWT app and we all of the sudden are getting reports on this when they are trying to follow through with zoom integrations with the event notification endpoint URL. Basically a “URL Validation failed. Try again later.”
We have verified that the webhook endpoint requirements are being met. The webhook url hasn’t changed in years.
Sometimes validation can fail because you aren’t setting the status correctly, or the encryption token that was sent back doesn’t match the encryption token in the header.
Can you confirm that the status is being set to 200 or 204 and that the encryption tokens match?
I’m trying to validate the webhook URL in Zoom using AWS Lambda and getting error as “URL Validation failed. Try again later" and not able to validate the URL.I have followed the same steps which is given in Documentation .
I can able to validate the URL by using VS code and facing this issue only on AWS Lambda.
I’m facing the issue while checking the condition if (req.headers[‘x-zm-signature’] === signature) ,x-zm-signature and signature is getting varied.