是否可以列出特定广告形式ID中提出的问题? 在此文档https://developers.facebook.com/docs/marketing-api/guides/lead-ads/v2.5中,只能使用" leadgen_qualifiers"列出特定页面的所有问题。但是可以列出特定的广告表单ID吗? 谢谢,Alex。
答案 0 :(得分:1)
阅读所有在特定表格上回答的问题我使用以下PHP Marketing SDK代码:
// Initialize a new Session and instanciate an Api object
Api::init($app_id, $app_secret, $access_token);
$form = new LeadgenForm($formId);
// A cursor of Lead object
$cursor = $form->getLeads();
在引擎盖下,它拨打电话/v2.5/<FORM ID>/leads
希望这个帮助