我正在尝试使用Facebook Graph Explorer检索已存档和已删除广告的洞察指标,但没有成功。
查询-GET
版本-V3.3,V3.2
URI-
act_xxxxxxxxxxxxxxx/ads?fields=id,effective_status,updated_time,insights{spend,social_spend,relevance_score,reach,purchase_roas,place_page_name,outbound_clicks_ctr,outbound_clicks,objective,mobile_app_purchase_roas}&filtering=[{"field":"effective_status","operator":"IN","value":["ARCHIVED","DELETED"]}]
输出(缺少Insights数据)
{
"data": [
{
"id": "1231231231231123",
"effective_status": "ARCHIVED",
"updated_time": "2019-03-30T21:53:50-0700"
}
],
"paging": {
"cursors": {
"before": "yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy",
"after": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}
}
根据文档,这应该可以,但是不能。
参考资料:
https://developers.facebook.com/docs/marketing-api/best-practices/storing_adobjects?hc_location=ufi
谢谢!
Udi