Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook Webhook test send not working?

I am creating a Facebook Webhook. The callback link has been verified and so the connection should be okay.

When I further test the Webhook by pressing the test button under feed, enter image description here enter image description here

it seems it works.

However, nothing's received in my server, not even an access log in Apache. (I have checked both ssl_access_log and access_log) Any suggestion on what I have possibly missed?

like image 312
cytsunny Avatar asked Sep 11 '25 14:09

cytsunny


2 Answers

I changed App Mode from Development to Live, and worked!

like image 198
Vusal Abdullayev Avatar answered Sep 14 '25 04:09

Vusal Abdullayev


Did you forget to write POST request method ?

Facebook Webhook confirm callback URL in GET request, but they send event in POST request. So you need both GET and POST method in your server.

like image 36
Do Minh Phong Avatar answered Sep 14 '25 05:09

Do Minh Phong