gpt4 book ai didi

facebook - 如何在 Graph API Explorer 上进一步过滤我的广告帐户的 Facebook Graph API 查询?

转载 作者:行者123 更新时间:2023-12-02 21:41:21 25 4
gpt4 key购买 nike

我正在尝试使用 Facebook Graph API v2.11 进行营销,获取我的应用的广告支出和移动应用安装量。在 Graph API Explorer 中,当我尝试时

/act_<my account>/campaigns?fields=insights{actions,spend}&time_range={'since':'2017-07-07','until':'2017-12-12'}

在输出中的“insights”下,我得到了这种类型的对象:

    "data": [
{
"actions": [
{
"action_type": "comment",
"value": "3"
},
{
"action_type": "like",
"value": "33"
},
{
"action_type": "link_click",
"value": "1531"
},
{
"action_type": "mobile_app_install",
"value": "1049"
}
],
"spend": "8621.03",
"date_start": "2017-10-28",
"date_stop": "2017-11-26"
}
]

如果我希望它仅获取操作类型为“mobile_app_install”的操作,如何进一步过滤我的查询?

最佳答案

可以在 Facebook 端进行过滤,只需这样调用即可:

/act_<yourAdAccount>/insights
?level=campaign
&fields=actions,spend
&time_increment=all_days
&time_range={'since':'2017-07-07','until':'2017-12-12'}
&filtering=[{field: "action_type",operator:"IN", value: ['mobile_app_install']}]
&use_account_attribution_setting=true

关于facebook - 如何在 Graph API Explorer 上进一步过滤我的广告帐户的 Facebook Graph API 查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47508658/

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