我希望有一个API调用返回用户在Insights页面上的每日新用户的用户趋势图中显示的完全相同的数据。我无法确定显示哪个度量标准,因为显而易见的选择(application_installation_adds或application_installation_adds_unique)返回的值根本不匹配。如果有可能看到该图表的数据生成位置,请告诉我。
谢谢!
答案 0 :(得分:0)
在当前版本的Platform Insights中,大多数图表的角落都有一个小选择器,带有一些选项,其中一个选项会显示用于生成该图表的API调用(尽管您和#39;我需要使用你自己的访问令牌。
API调用全部记录在此处:https://developers.facebook.com/docs/graph-api/reference/app/app_insights
以下是在活动登录用户指标的前端和相应API调用中显示的示例:
' API示例'打开此对话框:
具体而言,对于新用户,App Insights API中指标的当前名称称为initial_permission_grants
示例电话:
https://graph.facebook.com/v2.2/<APP ID>/app_insights?metric_key=initial_permission_grants
回复[部分]示例:
{
"data": [
{
"time": "2014-12-12T08:00:00+0000",
"value": "0"
},
{
"time": "2014-12-13T08:00:00+0000",
"value": "0"
},
{
"time": "2014-12-14T08:00:00+0000",
"value": "0"
},
{
"time": "2014-12-15T08:00:00+0000",
"value": "1"
},
{
"time": "2014-12-16T08:00:00+0000",
"value": "0"
},
{
"time": "2014-12-17T08:00:00+0000",
"value": "0"
},
{
"time": "2014-12-18T08:00:00+0000",
"value": "0"
}
]
}
API调用时来自Insights的相应图表: