0
嗨,我是新的facebook營銷API。我想以csv格式下載我正在使用Insights API異步作業的帳戶完整報告,使用它可以獲得「report_run_id」,然後我提出了對this link的api請求。它給出了錯誤的響應。任何人可以幫助我如何可以下載CSV format.code報告,我想的是:如何使用Insights API異步作業下載Facebook報告?
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();
}