Yes, I’ve tried troubleshooting the issue, but I haven’t been able to identify the exact cause of the validation failure. When I click the Validate button in Zoom, I simply receive the message: Please validate your endpoint URL.
The validation fails with the message: URL validation failed. Try again later.
I’ve ensured that my code handles the plain token challenge as per Zoom’s documentation, and the endpoint is publicly accessible. However, the validation still doesn’t succeed.
If there’s any known solution, configuration detail, or guidance available for this issue, I’d appreciate your help. I’d also like to raise a support ticket if needed.
We’ve implemented the Zoom webhook exactly as per the sample you provided, including signature validation and plainToken handling—you’re welcome to review our code above to confirm.
It seems like you’re facing an issue with webhook validation. Here’s a working Next.js version of the webhook verification that could be useful. You just need to convert it into Laravel for your use case.
The code verifies the signature by using the raw body and headers to check the validity of the webhook.
After successful validation, it processes events like url_validation and responds accordingly.
This is designed for Next.js but can be easily adapted to a Laravel environment.
You can convert this code to Laravel by using Laravel’s Request class for getting the raw body and headers, and then implementing the signature verification using Laravel’s built-in cryptographic functions.
I’m reaching out for assistance with a sudden issue regarding our webhook event notifications. Our webhook subscription for both dev and prod environments was automatically disabled on January 10, 2026. Prior to this, the system had been working perfectly for several months without any changes to our configuration.
The Issue: Currently, our event subscriptions show as “Disabled,” and we are prompted to re-validate the endpoint URL.
What we have tested:
Manual Test (Postman): We tested our endpoint (https://dev-api.guseip.io/gus/zoom/event) directly in Postman using the same Token Authentication credentials. The API works perfectly fine and returns the expected successful response.
Zoom Marketplace Console Validation: When we try to click the “Validate” button in the Zoom App Marketplace console, we receive an error stating: “Fail to get access token”.
Handshake logic: Our backend is configured to handle the HMAC-SHA256 Challenge-Response check (CRC).
Timing: The issue started abruptly on Jan 10.
We are confused as to why the Zoom console is reporting a failure to retrieve an access token when the exact same credentials and URL work in Postman. This prevents us from re-validating the endpoint to resume receiving events.
Has anyone encountered this specific “fail to get access token” error during validation while manual tests succeed? Are there any new requirements for Token Authentication or account-level blocks that could have been triggered on Jan 10?
Any guidance on how to resolve this would be greatly appreciated.
hi @Marketing10
Thanks for reaching out to us!
Can you please confirm if you are still having this issue? I have not seen this error in the past and it is strange since it was working on your end.