任何人都有关于如何访问format /'csv'选项的任何输入,该选项似乎可用于通过/ reportstats查询生成的异步报告?
reportstats查询的文档提供了一个格式选项,用于指定创建异步查询的时间:https://developers.facebook.com/docs/reference/ads-api/adreportstats/#columns
我正在使用/ reportstats查询来创建/安排异步报告,并指定format = csv。我唯一的问题是......好吧。如何访问已按计划安排的csv报告?!当我尝试访问report / reportstats?report_run_id = XXX查询时,我希望它能提供一个包含csv路径的URL,但是没有这样的运气。
有意义的是Graph只返回JSON编码数据,但我想使用csv作为ETL管道的输入。 reportstats查询似乎支持这一点,但到目前为止还没有运气。有人参加吗?
答案 0 :(得分:0)
您需要将format=csv
参数添加到包含作业ID的第二个调用中。
e.g。 FB.api('/YOUR_AD_ACCT_ID/reportstats?report_run_id=123&format=csv')
。
但是,如果您只想安排报告,那么您应该使用adreportschedules
API调用。