我想使用一个图形API调用来请求以下Instagram Insights指标:
我面临的问题是follower_count
需要一个周期参数'day',而audience_gender_age
需要一个周期参数'lifetime'。我试图将它们合并到一个API调用中,但是Facebook不支持此操作:
/XXXXXX/?fields=insights.metric(follower_count).period(day),insights.metric(audience_gender_age).period(lifetime)
我是否有合适的方法在一个API调用中使用不同的时间段来请求这些指标?
如果需要在一个查询中两次从同一字段中请求数据,可以使用.as(name)
别名语法https://developers.facebook.com/docs/graph-api/aliasing-fields来完成
引用文档,
例如,您可以检索两种尺寸的图像,并将返回的对象字段别名为picture_small和picture_larger:
me?fields=id,name,picture.width(100).height(100).as(picture_small), picture.width(720).height(720).as(picture_large)