我正在使用fbRads软件包中的fb_insights提取不同fb广告系列的转化
我尝试了以下查询:
fb_insights(level="campaign",
fields =toJSON(c('campaign_name',
'actions'))
)
转换数据后(结果是Conversion_action_long),我得到了类似的东西
> Conversion_action_long[1:9,1:2]
action_type value
1: landing_page_view 243
2: comment 18
3: onsite_conversion.post_save 7
4: link_click 412
5: post 8
6: post_reaction 96
7: offsite_conversion.custom.324733138432846 1
8: offsite_conversion.custom.1031233833747815 17
9: offsite_conversion.custom.1053119251550317 15
第7、8、9行是自定义转换,但是查询返回offsite_conversion.custom.ID
格式,而不是我输入的自定义名称。
我正在查看Fb for developers documentation,但是对我来说,这个API的工作是新的。关于我需要更改或添加查询内容的任何建议对我来说都是非常有用的
预先感谢