gpt4 book ai didi

facebook - 我们如何过滤 Facebook 营销中多个特定事件的洞察数据?

转载 作者:行者123 更新时间:2023-12-05 04:40:52 30 4
gpt4 key购买 nike

我正在尝试通过使用多个特定广告系列进行过滤来深入了解广告帐户,我能够使用单个特定广告系列进行过滤这是我为单个特定广告系列尝试的代码

https://graph.facebook.com/v12.0/act_YOUR_ACCOUNT_ID/insights?fields=actions,reach,impressions,clicks,cpc,spend&filtering=[{field: "campaign.id",operator:"CONTAIN", value: '123456789'}}]

最佳答案

你有两个选择:

  1. 您可以根据您的特定条件构建一个广告系列列表,然后使用 IN 运算符而不是 CONTAIN 运算符,如下所示:
https://graph.facebook.com/v12.0/act_YOUR_ACCOUNT_ID/insights?fields=actions,reach,impressions,clicks,cpc,spend&filtering=[{field: "campaign.id",operator:"IN", value: ['id1', 'id2', 'id3']}]
  1. 您可以尝试像这样使用批处理请求(文档 herehere):
curl \
-F 'access_token=<ACCESS_TOKEN>' \
-F 'batch=[ \
{ \
"method": "GET", \
"relative_url": "v12.0/act_YOUR_ACCOUNT_ID/insights?fields=impressions,spend,ad_id,adset_id&filtering=[{field: "campaign.id",operator:"CONTAIN", value: '123456789'}]" \
}, \
{ \
"method": "GET", \
"relative_url": "v12.0/act_YOUR_ACCOUNT_ID/insights?fields=impressions,spend,ad_id,adset_id&filtering=[{field: "campaign.id",operator:"CONTAIN", value: '222222222'}]" \
}, \
]' \
'https://graph.facebook.com'

关于facebook - 我们如何过滤 Facebook 营销中多个特定事件的洞察数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70181188/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com