Hi all,
I’m trying to get webhooks working so i can get an update when a video has finished processing.
I setup the webhook at added it to CF which sent the initial response:
Hello World! This is a test message sent from Cloudflare. If you can see this, your webhook is configured correctly.
So the connection is working, however whenever i uploaded/delete a video, i get no notification.
Is there something im missing?
Hi Stuart
Have you had a look at the docs?
They seem to give quite a bit of information. Are you getting any of the errors?
Hiya,
Not getting any errors, but the same webhook_log.txt file is not getting any notifications
This is the code ive got on my php webhook page, which in theory should pick up everything hitting it.
<?php
$data = json_decode(file_get_contents('php://input'), true);
file_put_contents("webhook_log.txt", $data);
?>