kmnurunnabi's avatar

Failed to create a request in Webhooks by Zapier

I was using webhook request accepting from my Laravel application. I run: php artisan serve and then click for testing zapier webhook and found:

Failed to create a request in Webhooks by Zapier
('Connection aborted.', ConnectionError("('Connection aborted.', error(110, 'Connection timed out'))"))

webhook URL: http://127.0.0.1:8000/webhook/register.

web.php

Route::post('/webhook/register', function (Request $request) {
    return response()->json($request->json(), 201);
});

Does anybody know what is the problem?

0 likes
2 replies
rvdiwas's avatar

sorry to say, but you couldn't use your local server url as the webhook url as it isn't exposed to the internet.

Please or to participate in this conversation.