I have a JWT app installed (and have tested that it works for restAPI calls. Now I am trying to get webhooks working. So for my app I have 6 events to trigger webhooks, including Webinar Deleted. The callback is https://www.mysite.com/zoom/webhook
I then have a route that handles this url and goes to a webhook handler. In the Zoom webhook log for my app I don’t see Webinar Delted even though I have deleted a webinar for testing the webhook.
I have something similar for Mailchimp. Mailchimp is working. With Zoom I have my Laravel controller for this route as ZoomWebhookController with the handle method.
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\Support\Facades\Log;
class ZoomWebhookController extends Controller
{
/**
* Handle a zoom webhook.
*
*
*/
public function handle(Request $request)
{
// Handle The Event
return Response(‘My Zoom Webhook Handled’, 200);
}
}
Also laravel requires entries in the verifycsrftoken middleware. I have this:
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
class VerifyCsrfToken extends BaseVerifier
{
/**
* The URIs that should be excluded from CSRF verification.
*
*
*/
So here is what I notice. In the payload there is no webinar description. The reason I am using the webhook is so that I can populate a webinars table on my site.
Now I could use restAPI to get the description, but if I do that from the webhook endpoint on my site that was setup with a webhook only app, will that somehow prevent me from getting data via the restAPI?
Also, I really wish Zoom had a way to categorize and bundle webinars. Maybe add a metadata object or something that lets users have more options for syncing with their own databases. For instance on my site I will have webinars organized like
This would be for an overall series (which will have several webinars)
In order to call the Zoom APIs, you need to use a OAuth or JWT app. This is separate and will not effect your Webhook Only App. Since you already have a JWT app setup, here is a link back on how to call the API’s with a JWT token,
You can accomplish this via occurrences, and then limiting the registration on each one. Although I see that there could be more customization here and will add this as a feature request.
Hi, my JWT app settings seem normal, but I just couldn’t get the webhook triggering with it. I only have webhooks working with the webhook app. My JWT app is working elsewhere, for instance I have a Stripe webhook and in that webhook I call Zoom restAPI via my JWT app.
So in the end, just not sure why my JWT app doesn’t work to trigger webhooks on my site…
Hi, the problem with using occurrences in that way is that a webinar has same name across occurrences. So that doesn’t let me accomplish this hierarchy:
Webinar Series A
Webinar Topic X
Webinar Topic Y
Or more ideal would be
Category 1
Webinar Series A
Webinar Topic X
Webinar Topic Y