我要通过AdInsights API
提取按小时细分的转化数据。
我正在使用以下命令:
adset.get_insights(
fields=[AdsInsights.Field.actions, AdsInsights.Field.clicks],
params={
'action_breakdowns': ['action_type'],
'filtering':[{'field':'action_type', 'operator':'CONTAIN', 'value':'offsite_conversion.custom.784940155013339'}],
'level': AdsInsights.Level.account,
'breakdowns': ['hourly_stats_aggregated_by_advertiser_time_zone'],
'time_range': {'since':'2018-01-01','until':today}
})
在结果报告中,我按一天中的小时数分别获得了点击和转化计数。
但是,我不清楚转换时间是基于点击时间还是转换操作时间。
也就是说,如果用户在下午1点点击广告但在下午2点进行转化,那么转换操作将归因于下午1点还是下午2点?