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.
I have a similar issue with a published user-level app but it was working for months and now randomly stopped working with url validation error. Can anyone from zoom help. Also a node lambda function. I have verified the domain certificate, DNS health and tested on postman. What I don’t understand is how validation was working and now suddenly fails.
Encountering a “New Webhook URL Validation issue” typically suggests there’s a problem with setting up or validating a webhook URL for a service or application. Here are some common reasons and steps to address this issue:
Correct URL Format: Ensure that the webhook URL you are trying to use is correctly formatted according to the specifications of the service or application. It should include the correct protocol (e.g., https://) and be a valid endpoint that can receive POST requests.
Authentication and Permissions: Some webhook setups require authentication credentials (e.g., API keys, tokens) to validate and authorize requests. Double-check if your webhook configuration requires any specific authentication setup.
Firewall and Security Settings: Verify that your server or firewall settings allow incoming requests to the webhook URL. Sometimes, firewalls or security measures can block webhook notifications from reaching your server.
Testing with Tools: Use webhook testing tools or utilities provided by the service to send test payloads to your webhook URL. This helps verify if the URL is properly configured to receive and process incoming data.
Error Messages and Logs: Check error messages or logs provided by the service or application when setting up the webhook. They can often provide insights into what might be wrong with the URL configuration or validation process.
Contact Support: If you’ve followed the setup instructions correctly and still encounter issues, reach out to the support team of the service or application. They can provide specific troubleshooting steps or confirm if there are any known issues with webhook URL validation.
By systematically checking these aspects, you should be able to diagnose and resolve the “New Webhook URL Validation issue” effectively, ensuring that your webhook integration functions as intended. for details.