我正在尝试从Facebook Marketing API获取人口统计受众数据。
如果我做这个搜索,我只能得到观众人数:
6003024075156?fields=audience_size、描述、名称、主题、disambiguation_category
它会返回
{
"audience_size": 2824330,
"description": null,
"name": "Air New Zealand",
"topic": "Business and industry",
"disambiguation_category": "Airline Company",
"id": "6003024075156"
}
在文档中,它建议我可以获得在Business Manager的主要受众洞察面板中看到的其他信息
https://developers.facebook.com/docs/graph-api/reference/audience-insights-query/
我特别感兴趣的是如何构造查询来返回观众的人口统计信息
https://developers.facebook.com/docs/graph-api/reference/audience-insights-age-gender/
Field Description
age_by_gender
list<AudienceInsightsAgeGender>
Demographic information by gender
发布于 2016-12-17 04:51:12
我认为你想要的应该在这里:
https://developers.facebook.com/docs/marketing-api/audiences-api/audience-insights-api/v2.8
然而,它旁边的锁图标告诉我不存在这样的API。这可能是因为Facebook使用第三方(http://www.acxiom.com/)来获取汇总的人口统计数据。
https://stackoverflow.com/questions/40495178
复制相似问题