Facebook sends empty POST to a webhook

前端 未结 4 777
执念已碎
执念已碎 2021-01-18 11:58

I am trying to install a webhook for leadgen event for my page via a facebook app. So I have:

  1. Facebook Page where leads come from
  2. Facebook App
  3. <
4条回答
  •  自闭症患者
    2021-01-18 12:18

    In case you are using the django framework, you should request.body, as post data will remain empty.

    def webhook_response(request):
       # it will print the contents from facebook webhook response
       print(request.body)
    
       # something like the following object will print up if you are using leadgen
       {"object": "page", "entry": [{"id": "0", "time": 111111111, "changes": [{"field": "leadgen", "value": {"ad_id": "444444444", "form_id": "444444444444", "leadgen_id": "444444444444", "created_time": 11111111, "page_id": "444444444444", "adgroup_id": "44444444444"}}]}]}
    

提交回复
热议问题