从 Facebook Ads API 获取指标
我无法从 Facebook API 获取以下指标。 我如何从 Facebook 广告 API 计算出现在 Facebook 自己的广告界面中的这些指标:
- 达到
- 社交覆盖
- 频率、
- CPC、
- CPM。
I am not able get the below metrics from Facebook API.
How can I calculate the these metrics, which appear in Facebook's own ads interface, from the Facebook Ads API:
- Reach
- Social reach
- Frequency,
- CPC,
- CPM.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您获得广告组 ID 后,您必须发出 API 调用:
https://graph.facebook.com//stats
然后您会得到如下答案:
要计算 Facebook 前端中的字段:
'Reach' = unique_impressions
“社交影响力”= 称为“social_unique_impressions”。
“频率”= 展示次数 / unique_impressions
“每次点击费用”= 支出/点击次数
“每千次展示费用”=(已花费 * 1000)/ 展示次数
When you have the Ad group ID, you have to issue an API call:
https://graph.facebook.com/<AD-GROUP_ID>/stats
Then you get answer like this:
To calculate the fields in the Facebook frontend:
'Reach' = unique_impressions
'Social Reach' = is called social_unique_impressions.
'Frequency' = impressions / unique_impressions
'CPC' = spent / clicks
'CPM' = (spent * 1000) / impressions