2

嗨,我是 facebook 营销 API 的新手。我想下载我正在使用 Insights API 异步作业的 csv 格式的帐户完整报告,使用它我可以获得“report_run_id”,然后我为此链接发出 api 请求。它给出了错误的响应。任何人都可以帮助我如何下载 csv 格式的报告。我尝试过的代码是:

OkHttpClient client = new OkHttpClient();    
Request request = new Request.Builder()
  .url("https://www.facebook.com/ads/ads_insights/export_report/?report_run_id=279445242544715&name=reports&format=csv")
  .get()
  .build();

Response response = client.newCall(request).execute();
if(response.isSuccessful()){
 String resposes=response.body().string();
}
4

1 回答 1

4

我将给出使用 curl 的示例,但您应该能够轻松地将它们转换为 javascript。

使用report_run_id,您可以查询异步查询的完整性,例如:

curl -G \
  -d 'access_token=<ACCESS_TOKEN>' \
  https://graph.facebook.com/v2.10/1000002

这最终应该让您完成 100%:

{
  "id": "6044775548468",
  "account_id": "1010035716096012",
  "time_ref": 1459788928,
  "time_completed": 1459788990,
  "async_status": "Job Completed",
  "async_percent_completion": 100
}

然后,您需要使用见解边缘查询 report_run_id:

curl -G \
  -d 'access_token=<ACCESS_TOKEN>' \
  https://graph.facebook.com/v2.10/<YOUR_REPORT_RUN_ID>/insights
于 2017-10-17T14:29:27.170 回答