I have been working with a client who wants to connect dashboard with Monday.
I have successfully had webhooks working I can’t create a new one as I’m now getting this very descriptive error “Failed to communicate with URL provided.”
I uploaded a basic challenge-response script to this url:
https://dashboardonline.com.au/connect/monday.php
Which works but not through Mondays Webhooks.
Why would it work fine for 3 weeks then not work?
I suspect the dashboardonline.com.au domain is blocked by Monday.com which seems strange.
Can tech from Monday tell me why this is not working now?
EDIT: Please note I moved the script to a test server and it works fine. Can a Monday.com tech help here?
Another EDIT: I pointed another domain to the server and now it works on https://www.onapage.net/connect/monday.php.
So its to do with the dashboardonline.com.au domain.
Can anyone shed some light on that.
the challange script used is:
<?php
$data = json_decode(file_get_contents('php://input'), true);
$message = s
"challenge" => $datat"challenge"]
];
file_put_contents("response1.log", print_r(json_encode($data), true));
header('content-type: application/json');
echo json_encode($message);
?>