我在我的网站上安装了 Facebook Pixel,它记录了在我的网站上进行的购买。我网站上的脚本是正常的购买标准事件:
fbq('track', 'Purchase', {value: '0.00', currency: 'USD'});
除了“价值”是动态的并且随每个订单而变化。我想使用 FB Insights API(通过 Graph API Explorer 访问)访问这些附加参数。
现在,我的查询如下所示:
act_1020149xxxxxxxxxxx/insights?level=ad&action_report_time=conversion&default_summary=true&fields=actions,spend,account_id,campaign_name,ad_name,adset_name,impressions&time_range[since]=2015-11-01&time_range[until]=2015-12-01
这将返回如下所示的数据:
{
"data": [
{
"actions": [
{
"action_type": "link_click",
"value": 19
},
{
"action_type": "offsite_conversion.fb_pixel_purchase",
"value": 1
},
{
"action_type": "offsite_conversion.fb_pixel_view_content",
"value": 19
},
{
"action_type": "post_like",
"value": 88
},
{
"action_type": "page_engagement",
"value": 107
},
{
"action_type": "post_engagement",
"value": 107
},
{
"action_type": "offsite_conversion",
"value": 20
}
],
"spend": 5.16,
"account_id": "10201496xxxxxxxxxx",
"campaign_name": "Link Clicks to Website (CPC)",
"ad_name": "[2015/11/27] New Arrivals",
"adset_name": "Custom Audience - Visitors or Lookalike - Visitors",
"impressions": "2634",
"date_start": "2015-11-01",
"date_stop": "2015-12-01"
}, ...
如您所见,查询返回来自广告的网站 (offsite_conversion.fb_pixel_purchase) 购买。如何扩展此查询以包括每次购买的“价值”和“货币”,如嵌入在我的网站上的标准事件代码中所捕获的那样。
如果这不可能,那么我应该使用 API 的哪个部分来查找我正在寻找的购买数据?